﻿/* Fonts e Base iguais ao Index */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #7E6DDB;
    --primary-dark: #6151b8;
    --secondary-color: #F8B595;
    --accent-color: #A5DEE5;
    --dark-color: #2D3047;
    --light-color: #F9F9F9;
    --text-color: #4A4A68;
    --text-light: #8B8BA5;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #F9D5BB);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, .about-page {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header moderno espelhado do Index */
.modern-header {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.header-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Foto de fundo exclusiva do About */
.header-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/images/head3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none;
    will-change: auto;
}

/* Shapes flutuando, mesma lógica do Index */
.floating-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.12;
    filter: blur(40px);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 12%;
    left: 6%;
    animation-delay: 0s;
}

.shape-2 {
    width: 220px;
    height: 220px;
    top: 25%;
    right: 12%;
    background: var(--gradient-secondary);
    animation-delay: 2s;
}

.shape-3 {
    width: 260px;
    height: 260px;
    bottom: 16%;
    left: 18%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 28%;
    right: 22%;
    animation-delay: 6s;
}

.shape-5 {
    width: 220px;
    height: 220px;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 8s;
}

.header-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* antes: background com opacidade ~0.8 + backdrop-filter: blur(5px); */
    background: linear-gradient( 135deg, rgba(245, 247, 250, 0.35) 0%, rgba(228, 232, 240, 0.35) 100% );
    /* remove o desfoque global */
    backdrop-filter: none;
}


.header-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.header-text {
    flex: 1;
    max-width: 600px;
}

.header-title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.title-line {
    display: block;
}

    .title-line.accent {
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
    }

.header-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 520px;
}

/* Botões do header */
.header-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

    .cta-button.primary {
        background: var(--gradient);
        color: white;
    }

        .cta-button.primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(126, 109, 219, 0.4);
        }

    .cta-button.secondary {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

        .cta-button.secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

/* Visual à direita */
.header-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-image {
    position: relative;
    z-index: 3;
    animation: float 6s infinite ease-in-out;
}

.hero-logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.floating-elements {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: float 8s infinite ease-in-out;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.element-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    top: 50%;
    right: 0;
    animation-delay: 3s;
}

/* Indicador de rolagem */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient);
    margin-bottom: 10px;
    animation: scrollLine 2s infinite;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

/* Seções internas */
.personal-intro {
    padding: 100px 0;
    background: #fff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

    .intro-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--dark-color);
    }

.highlight {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.signature {
    margin-top: 24px;
}

    .signature img {
        max-width: 200px;
        height: auto;
        opacity: .9;
    }

.intro-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .image-frame::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
        border: 2px solid var(--primary-color);
        border-radius: 10px;
        z-index: -1;
    }

    .image-frame img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform .5s ease;
    }

    .image-frame:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0,0,0,.15);
    }

        .image-frame:hover img {
            transform: scale(1.03);
        }

/* Linha do tempo */
.journey-section {
    padding: 100px 0;
    background: #f5f3ff;
}

    .journey-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: var(--dark-color);
    }

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: var(--gradient);
    }

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(109,74,255,.3);
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Filosofia */
.philosophy-section {
    padding: 100px 0;
    background: #fff;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.philosophy-text {
    flex: 1;
}

    .philosophy-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--dark-color);
    }

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 18px;
    margin: 22px 0;
    line-height: 1.8;
}

.philosophy-text p {
    color: var(--text-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 28px;
}

.approach-item {
    text-align: center;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .approach-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,.1);
    }

    .approach-item i {
        font-size: 2.2rem;
        color: var(--primary-color);
        margin-bottom: 12px;
    }

    .approach-item h3 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }

    .approach-item p {
        font-size: .95rem;
        color: var(--text-light);
        margin: 0;
    }

.philosophy-image {
    flex: 1;
}

/* Certificações */
.certifications-section {
    padding: 100px 0;
    background: #f5f3ff;
}

    .certifications-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: var(--dark-color);
    }

.certifications-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    cursor: grab;
}

.certification-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .certification-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,.12);
    }

.certification-image {
    height: 200px;
    overflow: hidden;
}

    .certification-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

.certification-card:hover .certification-image img {
    transform: scale(1.08);
}

.certification-info {
    padding: 18px;
}

    .certification-info h3 {
        color: var(--primary-color);
        margin-bottom: 6px;
    }

    .certification-info p {
        color: var(--text-light);
        margin: 0;
        font-size: .95rem;
    }

/* Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

    .testimonials-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: var(--dark-color);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,.1);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 14px;
        left: 16px;
        font-size: 5rem;
        color: rgba(109,74,255,.1);
        font-family: serif;
        line-height: 1;
    }

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
}

.author-name {
    color: var(--dark-color);
}

.author-location {
    font-size: .92rem;
    color: var(--text-light);
}

/* Convite final */
.invitation-section {
    padding: 100px 0;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.invitation-content h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.invitation-content p {
    font-size: 1.15rem;
    margin: 0 0 24px 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.invitation-section .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

    .invitation-section .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.7s ease;
    }

    .invitation-section .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255,255,255,.3);
        background: var(--dark-color);
        color: #fff;
    }

        .invitation-section .cta-button:hover::before {
            left: 100%;
        }

/* Animações iguais ao Index */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scrollLine {
    0% {
        height: 40px;
    }

    50% {
        height: 20px;
    }

    100% {
        height: 40px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsivo, igual ao Index */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .header-text {
        max-width: 100%;
    }

    .header-title {
        font-size: 2.6rem;
    }

    .header-actions {
        justify-content: center;
    }

    .hero-logo {
        max-width: 320px;
    }

    .intro-content, .philosophy-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2.1rem;
    }

    .header-subtitle {
        font-size: 1.05rem;
    }

    .element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-year {
        left: 30px;
        transform: none;
    }

    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 80px !important;
    }
}

@media (max-width: 576px) {
    .modern-header {
        padding: 90px 0 60px;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .shape {
        display: none;
    }

    .shape-1, .shape-5 {
        display: block;
    }
}
