/* =============== VARIÁVEIS CSS =============== */
:root {
    /* Cores */
    --color-preimary: #66B7C6;
    --color-primary-light: #D8EFF3;
    --color-secondary: #7ED4C1;
    --color-beige: #F4EEDD;
    --color-brown: #C0A889;
    --color-gray: #F2F2F2;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    
    /* Tipografia */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Tamanhos */
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    
    /* Pesos */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Z-index */
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Transições */
    --transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    :root {
        --h1-font-size: 2rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.25rem;
    }
}

/* =============== BASE =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--normal-font-size);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: var(--font-semibold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inoit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Screen Reader Only - Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =============== CLASSES REUTILIZÁVEIS =============== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section__title {
    font-size: var(--h2-font-size);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section__subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* =============== BOTÕES =============== */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: var(--font-medium);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.button--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.button--primary:hover {
    background: #5aa3b0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 183, 198, 0.3);
}

.button--secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.button--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.button--outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.button--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.button--large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.button--full {
    width: 100%;
}

/* =============== HEADER / NAVEGAÇÃO =============== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background: transparent;
    transition: var(--transition);
}

.header.scroll-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav {
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--color-primary);
    letter-spacing: 2px;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--color-text);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__link--btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.nav__link--btn::after {
    display: none;
}

.nav__link--btn:hover {
    background: #5aa3b0;
}

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: var(--color-white);
        padding: 4rem 2rem;
        transition: var(--transition);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
    }
}

/* =============== HOME / HERO =============== */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-top: 4.5rem;
    padding-bottom: 2rem;
    z-index: 1;
    overflow: hidden;
}

/* Vídeo de fundo - oculto por padrão (desktop) */
.home__video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.home__container {
    position: relative;
    z-index: 1;
}

.home__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home__title {
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
    color: var(--color-white);
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.home__subtitle {
    font-size: 1.5rem;
    font-family: var(--font-title);
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.home__description {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Botões destacados do Hero */
.home__buttons .button {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.home__buttons .button--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(102, 183, 198, 0.5), 0 0 20px rgba(102, 183, 198, 0.3);
}

.home__buttons .button--primary:hover {
    background: #5aa3b0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 183, 198, 0.6), 0 0 30px rgba(102, 183, 198, 0.4);
}

.home__buttons .button--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-color: var(--color-white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.home__buttons .button--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: var(--color-white);
}

.home__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.home__scroll-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    animation: bounce 2s infinite;
}

/* Exibir vídeo apenas em mobile */
@media screen and (max-width: 768px) {
    .home {
        background-image: none;
        background-attachment: scroll;
    }
    
    .home__video {
        display: block;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =============== INTRO =============== */
.intro {
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.intro__wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.intro__img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.intro__image--left {
    justify-content: flex-end;
}

.intro__image--right {
    justify-content: flex-start;
}

.intro__content {
    text-align: center;
    padding: 0 1rem;
}

.intro__text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* =============== O QUE OFERECEMOS =============== */
.oferecemos {
    background-image: url('images/imagem11.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.oferecemos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 242, 242, 0.1) 0%, rgba(216, 239, 243, 0.15) 100%);
    z-index: 0;
}

.oferecemos__container {
    position: relative;
    z-index: 1;
}

.oferecemos .section__title {
    color: var(--color-primary);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.oferecemos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.oferecemos__card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.oferecemos__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 50px rgba(102, 183, 198, 0.3);
    border-color: rgba(102, 183, 198, 0.5);
}

.oferecemos__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.oferecemos__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.oferecemos__description {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.oferecemos__info {
    color: var(--color-primary);
    font-weight: var(--font-semibold);
}

.oferecemos__button {
    text-align: center;
    margin-top: 3rem;
}

.oferecemos__button .button {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    font-weight: var(--font-semibold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(102, 183, 198, 0.5), 0 0 20px rgba(102, 183, 198, 0.3);
    transition: var(--transition);
}

.oferecemos__button .button:hover {
    background: #5aa3b0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 183, 198, 0.6), 0 0 30px rgba(102, 183, 198, 0.4);
}


/* =============== QUOTE =============== */
.quote {
    background: var(--color-beige);
    padding: 4rem 0;
}

.quote__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote__text {
    font-size: 1.5rem;
    font-family: var(--font-title);
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
}


/* =============== SOBRE =============== */
.sobre {
    background-image: url('images/imagem1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(242, 242, 242, 0.25) 100%);
    z-index: 0;
}

.sobre__container {
    position: relative;
    z-index: 1;
}

.sobre__content {
    max-width: 900px;
    margin: 0 auto;
}

.sobre__text {
    margin-bottom: 2rem;
}

.sobre__text p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

.sobre__fundadores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sobre__fundador {
    background: rgba(242, 242, 242, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fundador__name {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.fundador__role {
    font-weight: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.fundador__titles {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: var(--small-font-size);
}

.fundador__description {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sobre__filosofia {
    margin-top: 3rem;
}

.filosofia__title {
    font-size: var(--h2-font-size);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Aplicar estilo section__title quando usado na filosofia */
.sobre__filosofia .section__title {
    font-size: var(--h2-font-size);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.filosofia__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.filosofia__list li {
    padding: 1rem;
    background: var(--color-primary-light);
    border-radius: 10px;
    text-align: center;
    color: var(--color-text);
    font-weight: var(--font-medium);
}

.filosofia__footer {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text);
}

/* =============== SERVIÇOS =============== */
.servicos {
    background: var(--color-gray);
    position: relative;
}

.servicos__wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.servicos__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.servicos__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.servicos__img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.servicos__image--left {
    justify-content: flex-end;
}

.servicos__image--right {
    justify-content: flex-start;
}

.servicos__container {
    position: relative;
    z-index: 1;
}

.servicos .section__title {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.servico {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servico:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 183, 198, 0.2);
}

.servico__header {
    margin-bottom: 1rem;
}

.servico__title {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: var(--font-semibold);
    line-height: 1.3;
}

.servico__description {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--color-text);
    font-size: 0.95rem;
}

.servico__info {
    background: var(--color-primary-light);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.servico__info p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.servico__list {
    margin: 0.75rem 0;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.servico__list li {
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.servico .button {
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* =============== AGENDA =============== */
.agenda {
    background-image: url('images/imagem3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.agenda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.agenda__container {
    position: relative;
    z-index: 1;
}

.agenda .section__title {
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.agenda .section__subtitle {
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.agenda__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.agenda__card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.agenda__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 183, 198, 0.2);
}

.agenda__date {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 183, 198, 0.3);
}

.agenda__day {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    color: var(--color-dark);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.agenda__time {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-title);
    color: var(--color-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: var(--font-semibold);
}

.agenda__info {
    padding: 2rem;
    background: var(--color-white);
}

.agenda__title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: var(--font-semibold);
}

.agenda__description {
    color: #333333;
    margin-bottom: 1rem;
    font-weight: var(--font-medium);
}

.agenda__status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
}

.agenda__status--open {
    background: rgba(126, 212, 193, 0.2);
    color: var(--color-secondary);
}

.agenda__status--limited {
    background: rgba(192, 168, 137, 0.2);
    color: var(--color-brown);
}

.agenda__button {
    text-align: center;
    margin-top: 3rem;
}

.agenda__button .button {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.agenda__button .button--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-color: var(--color-white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.agenda__button .button--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: var(--color-white);
}

/* =============== FAQ =============== */
.faq {
    background: var(--color-gray);
}

.faq__accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq__header:hover {
    background: var(--color-primary-light);
}

.faq__question {
    font-size: 1.125rem;
    color: var(--color-text);
    font-weight: var(--font-semibold);
}

.faq__icon {
    color: var(--color-primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__item.active .faq__content {
    max-height: 500px;
}

/* =============== CONTATO =============== */
.contato {
    background-image: url('images/imagem6.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.contato__container {
    position: relative;
    z-index: 1;
}

.contato .section__title {
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contato .section__subtitle {
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.contato__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contato__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contato__item svg {
    color: var(--color-white);
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.contato__item h3 {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contato__item p {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contato__form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: var(--normal-font-size);
    background: var(--color-white);
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contato__form .button {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    font-weight: var(--font-semibold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.contato__form .button--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border-color: var(--color-white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contato__form .button--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: var(--color-white);
}

/* =============== FOOTER =============== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer__subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__links li {
    color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--small-font-size);
}

/* =============== SCROLL TO TOP =============== */
.scrollup {
    position: fixed;
    right: 2rem;
    bottom: -50%;
    background: var(--color-primary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-fixed);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(102, 183, 198, 0.3);
}

.scrollup:hover {
    background: #5aa3b0;
    transform: translateY(-5px);
}

.scrollup.show-scroll {
    bottom: 2rem;
}

/* =============== ANIMAÇÕES =============== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* =============== MEDIA QUERIES =============== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .intro__wrapper {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 1.5rem;
    }
    
    .intro__img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .home {
        background-attachment: scroll;
    }
    
    .oferecemos {
        background-attachment: scroll;
    }
    
    .sobre {
        background-attachment: scroll;
    }
    
    .agenda {
        background-attachment: scroll;
    }
    
    .contato {
        background-attachment: scroll;
    }
    
    .servicos__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .servicos__image {
        position: relative;
        top: 0;
        justify-content: center;
    }
    
    .servicos__img {
        height: 300px;
        max-width: 100%;
    }
    
    .servicos__grid {
        grid-template-columns: 1fr;
    }
    
    .home__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .intro__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro__image--left,
    .intro__image--right {
        justify-content: center;
    }
    
    .intro__img {
        height: 300px;
        max-width: 100%;
    }
    
    .oferecemos__grid {
        grid-template-columns: 1fr;
    }
    
    .agenda__grid {
        grid-template-columns: 1fr;
    }
    
    .contato__content {
        grid-template-columns: 1fr;
    }
    
    .servico {
        padding: 2rem 1.5rem;
    }
    
    .sobre__fundadores {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre__fundador {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .button {
        padding: 0.875rem 1.5rem;
    }
    
    .home__scroll {
        display: none;
    }
}

/* =============== SCROLLBAR PERSONALIZADA =============== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5aa3b0;
}

