/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #D1C9BD;
    --text-color: #6E6D53;
    --button-bg: #6E6D53;
    --button-text: #ffffff;
    --white: #ffffff;
    --light-bg: #E8E4DD;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    background-color: #D1CABC;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
}

.logo a {
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #6E6D53;
    text-decoration: none;
    transition: opacity 0.3s;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    background-color: var(--button-bg);
    color: var(--button-text);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

.btn-center {
    text-align: center;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8e4dd 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(110, 109, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--button-bg);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background-color: rgba(110, 109, 83, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--button-bg);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-text strong {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 700;
}

.stat-text span {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--button-bg);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(110, 109, 83, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(110, 109, 83, 0.4);
}

.btn-hero-primary svg {
    width: 20px;
    height: 20px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--text-color);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 109, 83, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-badge-float {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--button-bg);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge-text strong {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Perfil Section */
.perfil {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.perfil-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 5rem;
    align-items: center;
}

.perfil-image {
    position: relative;
}

.perfil-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.perfil-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 109, 83, 0.15) 0%, transparent 100%);
    z-index: 1;
}

.perfil-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.perfil-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.7) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.perfil-decoration-1 {
    top: -20px;
    right: -20px;
}

.perfil-decoration-2 {
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
}

.section-label {
    display: inline-block;
    color: var(--button-bg);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(110, 109, 83, 0.1);
    border-radius: 50px;
}

.perfil-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.perfil-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.perfil-text .btn-secondary {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Diferenciais Section */
.diferenciais {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(110, 109, 83, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(110, 109, 83, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.diferenciais-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.diferenciais-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.diferenciais-header p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.diferencial-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.6) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.85) 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(110, 109, 83, 0.25);
    transition: all 0.4s ease;
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(110, 109, 83, 0.35);
}

.diferencial-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diferencial-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
}

.diferencial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
}

/* Áreas Intro */
.areas-intro {
    padding: 6rem 0;
    background-color: var(--bg-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.areas-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(110, 109, 83, 0.03) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

.areas-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(110, 109, 83, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(110, 109, 83, 0.02) 87.5%, rgba(110, 109, 83, 0.02)),
        linear-gradient(150deg, rgba(110, 109, 83, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(110, 109, 83, 0.02) 87.5%, rgba(110, 109, 83, 0.02)),
        linear-gradient(30deg, rgba(110, 109, 83, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(110, 109, 83, 0.02) 87.5%, rgba(110, 109, 83, 0.02)),
        linear-gradient(150deg, rgba(110, 109, 83, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(110, 109, 83, 0.02) 87.5%, rgba(110, 109, 83, 0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    animation: movePattern 20s linear infinite;
    pointer-events: none;
}

@keyframes movePattern {
    0% {
        background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    }
    100% {
        background-position: 80px 140px, 80px 140px, 120px 210px, 120px 210px;
    }
}

.areas-intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.areas-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
}

.areas-intro h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--button-bg);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.areas-intro h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--button-bg);
    border-radius: 2px;
}

.areas-intro > .container > .areas-intro-content > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.areas-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.8) 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(110, 109, 83, 0.2);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Tratamentos Section */
.tratamentos {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    text-align: center;
    position: relative;
}

.tratamentos-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.tratamentos h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.tratamentos h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--button-bg);
    font-weight: 600;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

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

.tratamento-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tratamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.6) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tratamento-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(110, 109, 83, 0.05);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.tratamento-card:hover::after {
    width: 400px;
    height: 400px;
}

.tratamento-card:hover::before {
    transform: scaleX(1);
}

.tratamento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tratamento-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.85) 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(110, 109, 83, 0.25);
    position: relative;
    z-index: 1;
}

.tratamento-card:hover .tratamento-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(110, 109, 83, 0.35);
}

.tratamento-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tratamento-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tratamento-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tratamento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--button-bg);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
}

.tratamento-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.tratamento-card:hover .tratamento-link {
    gap: 0.8rem;
}

.tratamento-card:hover .tratamento-link svg {
    transform: translateX(4px);
}

/* Exames Section */
.exames {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.exames-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.exames-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(110, 109, 83, 0.2);
}

.exames-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exames h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.exames h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--button-bg);
    font-weight: 600;
}

.exames p {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

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

.exame-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.exame-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 12px;
}

.exame-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--button-bg);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.exame-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Depoimentos Section */
.depoimentos {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    text-align: center;
    position: relative;
}

.depoimentos-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.depoimentos h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.depoimentos h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--button-bg);
    font-weight: 600;
}

.depoimentos-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.depoimentos-rating-total {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--button-bg);
}

.rating-details {
    text-align: left;
}

.rating-stars {
    color: #FFB800;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.depoimentos > .container > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.depoimentos-plataforma {
    margin-top: 4rem;
}

.plataforma-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(110, 109, 83, 0.15);
}

.plataforma-info h4 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plataforma-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rating-stars-small {
    color: #FFB800;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 600;
}

.depoimento-card {
    background-color: #737259;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 6rem;
    color: var(--white);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    background-color: #7f7d62;
}

.depoimento-header {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.depoimento-stars {
    color: #FFB800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}



.depoimento-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.depoimento-autor {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.depoimentos-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-depoimentos {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--button-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--button-bg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.btn-depoimentos:hover {
    background-color: var(--button-bg);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(110, 109, 83, 0.25);
}

.btn-depoimentos svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-depoimentos:hover svg {
    transform: translateX(4px);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
    text-align: center;
    position: relative;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.blog-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.blog-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--button-bg);
    font-weight: 600;
}

.blog-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

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

.categoria-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.6) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.categoria-card:hover::before {
    transform: scaleX(1);
}

.categoria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.categoria-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.85) 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(110, 109, 83, 0.25);
    transition: all 0.4s ease;
}

.categoria-card:hover .categoria-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(110, 109, 83, 0.35);
}

.categoria-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.categoria-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.categoria-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.9) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(110, 109, 83, 0.3);
}

.btn-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(110, 109, 83, 0.4);
}

.btn-blog svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-blog:hover svg {
    transform: translateX(5px);
}

/* Agendar Section */
.agendar {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.9) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.agendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.agendar-content {
    position: relative;
    z-index: 1;
}

.agendar h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.agendar > .container > p,
.agendar-content > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.95;
}

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

.consulta-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.consulta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--button-bg) 0%, rgba(110, 109, 83, 0.6) 100%);
    border-radius: 15px 15px 0 0;
}

.consulta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.consulta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 15px;
}

.consulta-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--button-bg);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consulta-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.consulta-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.consulta-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    font-size: 1rem;
}

.consulta-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* CTA Inline Sutil */
.cta-inline {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(110, 109, 83, 0.03) 0%, transparent 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.cta-inline h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-inline p {
    font-size: 1.05rem;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.btn-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background-color: var(--button-bg);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(110, 109, 83, 0.25);
}

.btn-cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(110, 109, 83, 0.35);
}

.btn-cta-inline svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--white);
    text-align: center;
}

.faq-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.faq-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--button-bg);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
    text-align: left;
}

/* Footer */
.footer {
    background-color: var(--button-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about p {
    margin-bottom: 1rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.footer-nav h4 {
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 0.8;
}

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

.footer-credits {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.6;
    font-weight: 300;
}

.footer-credits a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    
    .navbar .btn-agendar {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #D1CABC;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .perfil-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Hero Responsive */
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 4rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .stat-text strong {
        font-size: 0.85rem;
    }
    
    .stat-text span {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badge-float {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-text strong {
        font-size: 0.9rem;
    }
    
    .badge-text span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .perfil-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .perfil-text h2 {
        font-size: 2rem;
    }
    
    .areas-features {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-header h2 {
        font-size: 2.2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tratamentos h2 {
        font-size: 2.2rem;
    }
    
    .tratamentos-grid {
        grid-template-columns: 1fr;
    }
    
    .exames-container {
        padding: 2.5rem 1.5rem;
    }
    
    .exames h2 {
        font-size: 2rem;
    }
    
    .exames-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .depoimentos h2 {
        font-size: 2.2rem;
    }
    
    .depoimentos-container {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-rating {
        padding: 0.8rem 1.5rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .blog-header h2 {
        font-size: 2.2rem;
    }
    
    .blog-categorias {
        grid-template-columns: 1fr;
    }
    
    .agendar h2 {
        font-size: 2.2rem;
    }
    
    .agendar > .container > p,
    .agendar-content > p {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    
    .consultas-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .perfil-text h2 {
        font-size: 1.8rem;
    }
    
    .tratamentos h2,
    .depoimentos h2,
    .blog-header h2,
    .agendar h2 {
        font-size: 1.8rem;
    }
    
    .agendar > .container > p,
    .agendar-content > p {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }
    
    .consultas-grid {
        margin-top: 1.5rem;
    }
    
    .btn-blog {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .areas-intro h2 {
        font-size: 2rem;
    }
    
    .diferenciais-header h2 {
        font-size: 1.8rem;
    }
    
    .diferencial-card {
        padding: 2.5rem 1.5rem;
    }
    
    .exames-features {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-depoimentos {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .cta-inline h3 {
        font-size: 1.5rem;
    }
    
    .btn-cta-inline {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .depoimentos-rating {
        padding: 0.8rem 1.5rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1.05rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.2rem 1rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1.2rem 1rem;
    }
}

/* Formação Section */
.formacao-content {
    max-width: 900px;
    margin: 0 auto;
}

.formacao-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.formacao-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(110, 109, 83, 0.1);
}

.formacao-list li:last-child {
    border-bottom: none;
}

.formacao-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.curriculo-link {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(209, 201, 189, 0.1);
    border-radius: 8px;
}

.curriculo-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.curriculo-link a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Institucional Section */
.institucional {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(209, 201, 189, 0.05) 0%, rgba(110, 109, 83, 0.05) 100%);
}

.institucional-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.institucional-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.institucional-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .formacao-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
    }
    
    .institucional-header h2 {
        font-size: 2rem;
    }
    
    .institucional-header p {
        font-size: 1rem;
    }
}

/* ============================================
   FORMAÇÃO SECTION - LAYOUT PREMIUM
   ============================================ */

.formacao-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
}

.formacao-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.formacao-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin: 1rem 0;
    font-weight: 700;
}

.formacao-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Category Sections */
.formacao-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.category-icon svg {
    width: 28px;
    height: 28px;
}

.category-title h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 700;
}

/* Formação Grid */
.formacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.formacao-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.formacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.formacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.formacao-card:hover::before {
    transform: scaleX(1);
}

.formacao-card.highlight-card {
    background: linear-gradient(135deg, rgba(209, 201, 189, 0.1), rgba(110, 109, 83, 0.05));
    border: 2px solid var(--primary-color);
}

.formacao-card.premium-card {
    background: linear-gradient(135deg, #f8f6f3, #ffffff);
    border: 2px solid #d4af37;
}

.card-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-badge.premium {
    background: linear-gradient(135deg, #d4af37, #f4e5a1);
    color: #333;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.formacao-card h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0.5rem 0;
    font-weight: 700;
}

.formacao-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0.5rem 0;
}

.card-date {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.3rem 0.8rem;
    background: rgba(110, 109, 83, 0.1);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Timeline */
.formacao-timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 2rem;
}

.formacao-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(209, 201, 189, 0.2);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.timeline-period {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sociedades Grid */
.sociedades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.sociedade-badge {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sociedade-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Currículo CTA */
.curriculo-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.curriculo-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.curriculo-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.curriculo-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.curriculo-text {
    flex: 1;
    color: white;
}

.curriculo-text h4 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.curriculo-text p {
    margin: 0;
    opacity: 0.95;
    font-size: 1.1rem;
}

.btn-curriculo {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-curriculo svg {
    width: 20px;
    height: 20px;
}

.btn-curriculo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}

/* Responsive */
@media (max-width: 768px) {
    .formacao-section {
        padding: 3rem 0;
    }

    .formacao-header h2 {
        font-size: 2rem;
    }

    .formacao-header p {
        font-size: 1rem;
    }

    .category-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .category-title h3 {
        font-size: 1.4rem;
    }

    .formacao-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .formacao-card {
        padding: 1.5rem;
    }

    .formacao-timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.3rem;
        width: 16px;
        height: 16px;
    }

    .curriculo-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .curriculo-text h4 {
        font-size: 1.4rem;
    }

    .curriculo-text p {
        font-size: 1rem;
    }

    .btn-curriculo {
        width: 100%;
        justify-content: center;
    }

    .sociedades-grid {
        flex-direction: column;
    }

    .sociedade-badge {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .formacao-header h2 {
        font-size: 1.6rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }

    .formacao-card h4 {
        font-size: 1.1rem;
    }
}


/* ============================================
   BOTÃO WHATSAPP HEADER
   ============================================ */

.btn-whatsapp-header {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp-header:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Header fixo no mobile */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Adiciona padding no body para compensar o header fixo */
    body {
        padding-top: 70px;
    }
    
    .btn-whatsapp-header {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-whatsapp-header {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
}


/* ============================================
   BOTÃO AGENDAR CONSULTA - HEADER
   ============================================ */

.btn-whatsapp-header {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--secondary-color) !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp-header:hover {
    background: rgba(110, 109, 83, 0.1);
    transform: translateY(-1px);
    color: var(--secondary-color) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

/* Header fixo no mobile */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    body {
        padding-top: 70px;
    }
    
    .btn-whatsapp-header {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-whatsapp-header {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
}


/* ============================================
   FOOTER LEGAL LINKS
   ============================================ */

.footer-credits a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 1 !important;
    text-decoration: underline;
}

/* Responsivo para links legais */
@media (max-width: 768px) {
    .footer-credits {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-credits a {
        margin-right: 0 !important;
    }
}


/* ============================================
   SEO ADJUSTMENTS - INDEX PAGE
   ============================================ */

/* H1 com estilo de hero-tag (mantém layout original) */
h1.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #6E6D53;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

/* H2 com estilo de hero-title (mantém layout original) */
h2.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
}

@media (max-width: 768px) {
    h2.hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1.hero-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    h2.hero-title {
        font-size: 2rem;
    }
}
