@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ========================================
   1. RESET E ESTILOS GLOBAIS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Lora', serif;
    color: #0d7377;
    margin-bottom: 1rem;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   2. HEADER - TODAS AS PÁGINAS
   ======================================== */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fdfdfd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
}

header img {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

header h2 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: #0d7377;
    margin: 0;
    white-space: nowrap;
    font-weight: 600;
}

header nav {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

header nav a:hover {
    color: #14a1a6;
}

header .btn-agendar {
    background-color: #187F7D;
    color: white;
    border: 2px solid #187F7D;
    margin-left: 0.8rem;
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

header .btn-agendar:hover {
    background-color: #0b575b;
    border-color: #0b575b;
}

/* ========================================
   3. FOOTER - TODAS AS PÁGINAS
   ======================================== */

footer.footer {
    background-color: #111620;
    color: #e0e0e0;
    padding: 1rem 2rem;
    margin-top: 2.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: #a8d8db;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-col ul li a:hover {
    color: #14a1a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(224, 224, 224, 0.7);
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.75rem;
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.5;
}

.footer-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ========================================
   4. PÁGINA PRINCIPAL (INDEX.HTML)
   ======================================== */

/* 4.1 - HERO SECTION */
.hero {
    background: linear-gradient(to top, #0b575b 0%, #14a1a6 100%);
    padding: 4rem 2rem;
    color: white;
}

.hero .container1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-text h3 {
    font-size: 1.5rem;
    color: #1cd6dc;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.btn-hero-primary {
    padding: 0.9rem 2rem;
    background-color: white;
    color: #0d7377;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    padding: 0.9rem 2rem;
    background-color: white;
    color: #0d7377;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 85%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* 4.2 - SEÇÃO SOBRE */
.sobre {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.sobre .container h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #0d7377;
}

.sobre .container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experiencia-card {
    background-color: white;
    border: 2px solid #14a1a6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 200px;
    margin: 2rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.experiencia-card h3 {
    font-size: 2.5rem;
    color: #14a1a6;
    margin-bottom: 0.5rem;
}

.experiencia-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* 4.3 - SEÇÃO ÁREAS DE ATENDIMENTO */
.areas-atendimento {
    padding: 4rem 2rem;
    background-color: white;
}

.areas-atendimento .container h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #0d7377;
}

.subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 161, 166, 0.1);
    border-radius: 50%;
}

.card-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.card-icon svg {
    width: 50px;
    height: 50px;
    color: #14a1a6;
    stroke: #14a1a6;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0d7377;
}

.card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* 4.4 - SEÇÃO AGENDAMENTO (INDEX) */
.agendamento {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.agendamento .container h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #0d7377;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 161, 166, 0.1), rgba(24, 127, 125, 0.1));
    border-radius: 50%;
}

.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-icon svg {
    width: 60px;
    height: 60px;
    color: #14a1a6;
    stroke: #14a1a6;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0d7377;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-button {
    display: table;
    text-decoration: none;
    margin: 2.5rem auto 0;
    padding: 1rem 2.5rem;
    background-color: #14a1a6;
    color: white !important;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #0d7377;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 161, 166, 0.3);
    text-decoration: none;
}

/* 4.5 - SEÇÃO RELATOS */
.relatos {
    padding: 4rem 2rem;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #0d7377;
    margin-bottom: 0.5rem;
}

.relatos-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.relato-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #14a1a6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.relato-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.quote-icon {
    font-size: 3rem;
    color: #14a1a6;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.relato-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.relato-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.relato-author {
    font-size: 0.95rem;
    color: #0d7377;
    font-weight: 600;
}

.relato-date {
    font-size: 0.85rem;
    color: #999;
}

.relato-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* 4.6 - SEÇÃO MODALIDADES DE ATENDIMENTO */
.modalidades-atendimento {
    padding: 4rem 2rem;
    background-color: white;
}

.modalidades-header {
    text-align: center;
    margin-bottom: 3rem;
}

.modalidades-header h2 {
    font-size: 2.2rem;
    color: #0d7377;
    margin-bottom: 1rem;
}

.modalidades-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.modalidades-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.modalidade-card {
    background-color: #fdfdfd;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.modalidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.modalidade-card--destacado {
    border: 2px solid #14a1a6;
    background: linear-gradient(135deg, rgba(20, 161, 166, 0.03) 0%, rgba(24, 127, 125, 0.02) 100%);
    position: relative;
    padding-top: 3.5rem;
}

.modalidade-card--destacado:hover {
    box-shadow: 0 10px 20px rgba(20, 161, 166, 0.15);
}

.modalidade-card--destacado .modalidade-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.modalidade-badge {
    display: inline-block;
    background-color: #14a1a6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.modalidade-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 161, 166, 0.1);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #14a1a6;
    flex-shrink: 0;
}

.modalidade-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    color: #14a1a6;
}

.modalidade-card__title {
    font-size: 1.5rem;
    color: #0d7377;
    margin-bottom: 0.8rem;
    font-family: 'Lora', serif;
    font-weight: 600;
}

.modalidade-card__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modalidade-card__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.modalidade-card__checklist-item {
    display: flex;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    align-items: flex-start;
}

.check-icon {
    color: #14a1a6;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.modalidade-card__pricing {
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
    margin-bottom: 1.5rem;
}

.modalidade-card__price-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.modalidade-card__price-main {
    font-size: 2rem;
    color: #14a1a6;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.modalidade-card__price-description {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.modalidade-card__btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.modalidade-card__btn--primary {
    background-color: #14a1a6;
    color: white;
}

.modalidade-card__btn--primary:hover {
    background-color: #0d7377;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 161, 166, 0.3);
}

.modalidade-card__btn--secondary {
    border: 2px solid #14a1a6;
    background-color: white;
    color: #14a1a6;
}

.modalidade-card__btn--secondary:hover {
    background-color: #14a1a6;
    color: white;
    box-shadow: 0 4px 12px rgba(20, 161, 166, 0.3);
}

.modalidades-footer-note {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #999;
    border-top: 1px solid #f0f0f0;
}

.modalidades-footer-note p {
    margin: 0;
}

/* ========================================
   5. PÁGINAS SECUNDÁRIAS (PÁGINAS DE CONTEÚDO)
   ======================================== */

/* 5.1 - PAGE HERO SECTION */
.page-hero {
    background: linear-gradient(to top, #0b575b 0%, #14a1a6 100%);
    padding: 2rem 2rem;
    color: white;
    margin-bottom: 0;
}

.page-hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-hero__header-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.page-hero__title {
    color: white;
    font-size: 2rem;
    /* Um pouco menor no mobile para não quebrar linha feio */
    margin: 0;
    font-family: 'Lora', serif;
}

.page-hero__subtitle {
    color: white;
    font-size: 1rem;
    max-width: 800px;
    margin-top: 1.5rem;
}

/* 5.2 - PAGE SECTION */
.page-section {
    padding: 3rem 2rem;
    background-color: white;
}

.page-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-section__footer-note {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    font-size: 0.9rem;
    color: #999;
}

/* 5.3 - INFO CARDS CONTAINER */
.info-cards-container {
    display: grid;
    gap: 2rem;
    margin: 0;
}

.info-cards-container--2cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-cards-container--2cols-fixed {
    grid-template-columns: repeat(2, 1fr);
}

/* 5.4 - INFO CARD */
.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.info-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 161, 166, 0.1);
    border-radius: 50%;
    font-size: 2.5rem;
    color: #14a1a6;
}

.info-card__title {
    font-size: 1.2rem;
    color: #0d7377;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.info-card__content {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.info-card__content a {
    color: #14a1a6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card__content a:hover {
    color: #0d7377;
    text-decoration: underline;
}

/* 5.5 - CTA SECTION */
.cta-section {
    padding: 3rem 2rem;
    background-color: white;
}

.cta-section__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-section__title {
    font-size: 2.2rem;
    color: #0d7377;
    margin-bottom: 0.5rem;
}

.cta-section__subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-section__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #14a1a6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-section__button:hover {
    background-color: #0d7377;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 161, 166, 0.3);
}

/* 5.6 - BTN VOLTAR (Usado em páginas secundárias) */
.btn-voltar {
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-voltar:hover {
    color: #0d7377;
    transform: translateX(-5px);
}

/* ========================================
   DESKTOP (Telas maiores que 768px)
   ======================================== */
@media (min-width: 768px) {

    /* Ativa o Grid de 3 colunas perfeito para alinhar o título no centro */
    .page-hero__header-inline {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0;
    }

    /* Trava o botão na primeira coluna e joga para a esquerda */
    .btn-voltar {
        grid-column: 1;
        justify-self: start;
    }

    /* Trava o título no centro matemático exato da tela */
    .page-hero__title {
        grid-column: 2;
        font-size: 2.5rem;
        /* Tamanho original do seu layout */
    }
}

/* ========================================
   6. MODAIS
   ======================================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 720px;
    border-radius: 14px;
    padding: 32px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    animation: modalFade 0.25s ease;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 2px solid #5bb8b3;
    border-radius: 8px;
    background: transparent;
    color: #5bb8b3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.modal-close:hover {
    background: #5bb8b3;
    color: white;
}

.modal-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.modal-item i {
    font-size: 1.2rem;
    color: #1f2937;
    margin-top: 5px;
}

.modal-item h4 {
    font-size: 1.45rem;
    color: #1f2937;
    margin-bottom: 6px;
}

.modal-item p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   7. SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ======================================== */

.faq-section {
    padding: 4rem 2rem;
    background-color: #fdfdfd;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.faq-subtitle {
    margin-bottom: 3rem;
    color: #555;
    font-size: 1.1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #14a1a6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e293b;
}

.faq-item summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    transition: transform 0.3s ease;
    color: #14a1a6;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
}

.faq-footer a {
    color: #14a1a6;
    text-decoration: none;
    font-weight: 600;
}

.faq-header-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.5rem;
}

.faq-header-inline h2 {
    margin-bottom: 0;
}

/* ========================================
   8. RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

@media (max-width: 768px) {

    /* Header */
    header {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 1rem;
    }

    header h2 {
        font-size: 1.1rem;
    }

    header nav {
        order: 3;
        width: 100%;
        gap: 1rem;
        font-size: 0.85rem;
    }

    header button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero (página principal) */
    .hero .container1 {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h3 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Grid containers */
    .cards-container,
    .steps-container,
    .relatos-slider {
        grid-template-columns: 1fr;
    }

    /* Page Hero */
    .page-hero {
        padding: 2rem 1rem;
    }

    .page-hero__title {
        grid-column: 2;
        color: white;
        font-size: 2.5rem;
        margin: 0;
        text-align: center;
        white-space: nowrap;
        /* Evita quebras desnecessárias se houver espaço */
    }

    .page-hero__subtitle {
        font-size: 1rem;
        text-align: center;
        /* Centraliza o bloco de texto horizontalmente */
        margin: 1.5rem auto 0;
        /* O 'auto' nas laterais centraliza o bloco inteiro na tela */
        max-width: 800px;
        /* Mantém o texto em um comprimento confortável para leitura */
        color: white;
    }

    /* Page Section */
    .page-section {
        padding: 2rem 1rem;
    }

    .info-cards-container--2cols,
    .info-cards-container--2cols-fixed {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section__title {
        font-size: 1.8rem;
    }

    /* Footer */
    footer.footer {
        padding: 1.5rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .footer-note {
        font-size: 0.7rem;
    }

    /* Modal */
    .modal-content {
        padding: 24px;
    }

    .modal-content h2 {
        font-size: 1.7rem;
    }

    .modal-item {
        gap: 14px;
    }

    .modal-item h4 {
        font-size: 1.15rem;
    }

    /* Modalidades de Atendimento */
    .modalidades-atendimento {
        padding: 3rem 1rem;
    }

    .modalidades-header h2 {
        font-size: 1.8rem;
    }

    .modalidades-subtitle {
        font-size: 0.95rem;
    }

    .modalidade-card {
        padding: 2rem;
    }

    .modalidade-card__title {
        font-size: 1.3rem;
    }

    .modalidade-card__price-main {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {

    /* Header */
    header {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    header img {
        height: 40px;
    }

    header h2 {
        font-size: 0.9rem;
    }

    header nav {
        display: none;
    }

    header button {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Hero text */
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h3 {
        font-size: 1rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    /* Page Hero */
    .page-hero {
        padding: 1.5rem 1rem;
    }

    .page-hero__title {
        font-size: 1.4rem;
    }

    .page-hero__header-inline {
        gap: 10px;
    }

    .page-hero__subtitle {
        font-size: 0.95rem;
    }

    /* Info Card */
    .info-card {
        padding: 1.5rem;
    }

    .info-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .info-cards-container--2cols-fixed {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta-section__title {
        font-size: 1.4rem;
    }

    .cta-section__button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-container {
        gap: 1rem;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 0.75rem;
    }

    /* Modalidades de Atendimento */
    .modalidades-atendimento {
        padding: 2rem 1rem;
    }

    .modalidades-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .modalidades-subtitle {
        font-size: 0.9rem;
    }

    .modalidades-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .modalidade-card {
        padding: 1.5rem;
    }

    .modalidade-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .modalidade-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .modalidade-card__icon svg {
        width: 30px;
        height: 30px;
    }

    .modalidade-card__title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .modalidade-card__description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .modalidade-card__checklist-item {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        gap: 0.6rem;
    }

    .modalidade-card__pricing {
        padding-top: 1rem;
        margin-bottom: 1rem;
    }

    .modalidade-card__price-main {
        font-size: 1.5rem;
        margin-bottom: 0.15rem;
    }

    .modalidade-card__price-label {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .modalidade-card__price-description {
        font-size: 0.8rem;
    }

    .modalidade-card__btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .modalidades-footer-note {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}

/* ========================================
   SEÇÃO: COMO ACONTECE O ACOMPANHAMENTO (TIMELINE)
   ======================================== */

.journey-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(20, 161, 166, 0.15);
    color: #14a1a6;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.journey-badge i {
    width: 18px;
    height: 18px;
}

.journey-title {
    font-size: 2.5rem;
    color: #0d7377;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
    font-weight: 700;
}

.journey-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.journey-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Linha horizontal conectando os ícones (apenas desktop) */
@media (min-width: 768px) {
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 5%;
        right: 5%;
        height: 2px;
        background-color: rgba(20, 161, 166, 0.3);
        z-index: 0;
    }
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 0;
}

.step-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    border: 3px solid #14a1a6;
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 1.5rem;

    border-radius: 50%;

    background: white
    
}

.step-icon i {
    font-size: 3rem;
    color: #14a1a6;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.step-label {
    display: block;
    font-size: 0.75rem;
    color: #14a1a6;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.step-title {
    font-size: 1.4rem;
    color: #0d7377;
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   SEÇÃO: O QUE É A TRG?
   ======================================== */

.trg-section {
    padding: 4rem 2rem;
    background-color: white;
}

.trg-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trg-label {
    display: block;
    font-size: 0.8rem;
    color: #14a1a6;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.trg-title {
    font-size: 2.8rem;
    color: #0d7377;
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.trg-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.trg-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.benefit-check {
    color: #14a1a6;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.trg-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trg-circle-container {
    position: relative;
    width: 360px;
    height: 360px;
}

.trg-main-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);

    color: #14a1a6;
}

.trg-main-circle i {
    font-size: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.trg-floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #14a1a6;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.trg-floating-icon i {
    font-size: 2.2rem;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon {
    top: -20px;
    right: 20px;
}

.star-icon {
    bottom: 30px;
    left: -15px;
}

.leaf-icon {
    bottom: 40px;
    right: -10px;
}

/* ========================================
   RESPONSIVIDADE - TIMELINE E TRG
   ======================================== */

@media (max-width: 1024px) {
    .trg-circle-container {
        width: 280px;
        height: 280px;
    }

    .trg-main-circle {
        font-size: 3rem;
    }

    .trg-floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 3rem 1rem;
    }

    .journey-title {
        font-size: 1.8rem;
    }

    .journey-subtitle {
        font-size: 0.95rem;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .step-icon i {
        width: 40px;
        height: 40px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    /* TRG - Mobile First */
    .trg-section {
        padding: 3rem 1rem;
    }

    .trg-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trg-visual-column {
        order: 1;
    }

    .trg-text-column {
        order: 2;
    }

    .trg-title {
        font-size: 2rem;
    }

    .trg-circle-container {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .trg-floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .heart-icon {
        top: -15px;
        right: 15px;
    }

    .star-icon {
        bottom: 25px;
        left: -10px;
    }

    .leaf-icon {
        bottom: 35px;
        right: -8px;
    }
}

@media (max-width: 480px) {
    .journey-section {
        padding: 2rem 1rem;
    }

    .journey-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .journey-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .timeline-container {
        gap: 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step-icon i {
        width: 35px;
        height: 35px;
    }

    .step-label {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    /* TRG - Mobile Extra Small */
    .trg-section {
        padding: 2rem 1rem;
    }

    .trg-label {
        font-size: 0.7rem;
    }

    .trg-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .trg-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .trg-benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .benefit-item {
        padding: 0.8rem;
    }

    .benefit-text {
        font-size: 0.85rem;
    }

    .trg-circle-container {
        width: 240px;
        height: 240px;
    }

    .trg-main-circle {
        font-size: 2rem;
    }

    .trg-main-circle i {
        width: 50px;
        height: 50px;
    }

    .trg-floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .trg-floating-icon i {
        width: 24px;
        height: 24px;
    }

    .heart-icon {
        top: -12px;
        right: 10px;
    }

    .star-icon {
        bottom: 20px;
        left: -8px;
    }

    .leaf-icon {
        bottom: 28px;
        right: -5px;
    }
}

/* ========================================
   9. ANIMAÇÕES
   ======================================== */

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================
   RESPONSIVIDADE E BOTÃO DO MENU MOBILE
   ======================================== */

.nav-como-funciona {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #0d7377;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    z-index: 110;
}

@media (max-width: 992px) {
    header {
        justify-content: space-between; /* Mantém logo na esquerda e empurra o resto para a direita */
        gap: 0.8rem;
        padding: 1rem;
    }

    /* Mantém o botão de agendar visível no mobile, mas com ajustes para telas menores */
    header .btn-agendar {
        display: inline-block !important;
        margin-left: auto; /* Empurra o botão e o hambúrguer tudo para o canto direito */
        padding: 8px 14px;  /* Reduzido para caber lado a lado */
        font-size: 0.85rem;  /* Reduzido para não quebrar linha */
        white-space: nowrap;
    }

    /* Exibe o botão hambúrguer ao lado direito do agendar */
    .menu-toggle {
        display: block;
    }

    /* Menu oculto que abre para baixo */
    header nav.nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fdfdfd;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    /* Quando ativo, mostra os links */
    header nav.nav-menu.active {
        max-height: 400px;
    }

    header nav.nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Habilita o Como Funciona no menu expansível */
    .nav-como-funciona {
        display: block !important;
        font-weight: 600;
        color: #14a1a6;
    }
}

/* Ajuste fino extra para telas muito pequenas (ex: iPhone SE antigos) */
@media (max-width: 360px) {
    header h2 {
        display: none; /* Esconde a escrita "Maria Dinoir" mantendo apenas o Logo, dando mais espaço para os botões */
    }
}