/* -------------------------------------------------------------
   DESIGN SYSTEM PREMIUM - ROSA RODRIGUES NUTRIÇÃO FUNCIONAL
   Visual Sofisticado, Transições Fluídas e Alta Conversão
------------------------------------------------------------- */

:root {
    /* Cores Oficiais da Identidade Visual */
    --obsidiana: #2C2820;
    --floresta: #4A5C40;
    --floresta-dark: #374630;
    --salvia: #8A9E7E;
    --menta: #C8D8BE;
    --linho: #E8DFD0;
    --ambar: #C4AA88;
    --creme: #F3ECE0;
    --creme-light: #F7F4EC;
    --white: #FDFCF7;

    /* Cores de Texto e Estados */
    --text-dark: #2C2820;
    --text-mid: #5C5248;
    --text-light: #8A8078;
    --text-on-dark: #FDFCF7;

    /* Sombras Premium Presentes e Warm-Toned */
    --shadow-sm: 0 8px 30px rgba(44, 40, 32, 0.04);
    --shadow-md: 0 16px 48px rgba(44, 40, 32, 0.07);
    --shadow-lg: 0 24px 64px rgba(44, 40, 32, 0.1);
    --shadow-hover: 0 32px 80px rgba(74, 92, 64, 0.14);

    /* Bordas Refinadas */
    --border-radius-sm: 14px;
    --border-radius-md: 24px;
    --border-radius-lg: 32px;
    --border-radius-pill: 100px;
    --border-soft: 1px solid rgba(138, 158, 126, 0.18);
    --border-focus: 1px solid var(--salvia);

    /* Transições */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset de Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

/* -------------------------------------------------------------
   ESTILOS TIPOGRÁFICOS & HIERARQUIA
------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 em,
h2 em,
h3 em {
    font-style: italic;
    color: var(--floresta);
    font-weight: 400;
}

p {
    color: var(--text-mid);
    font-size: 1.05rem;
    font-weight: 300;
}

/* -------------------------------------------------------------
   REUTILIZÁVEIS / CONTAINER / BOTÕES
------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(138, 158, 126, 0.1) 0%, rgba(200, 216, 190, 0.15) 100%);
    color: var(--floresta);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(138, 158, 126, 0.15);
    margin-bottom: 24px;
}

/* Tags de Seção - Âncora Editorial */
.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--salvia);
    margin-bottom: 16px;
    display: block;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1.5px;
    background-color: var(--salvia);
    border-radius: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--obsidiana);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-tag {
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    width: 28px;
    height: 1px;
    background-color: var(--salvia);
    opacity: 0.7;
    display: inline-block;
    position: static;
    transform: none;
}

/* Botões Modernos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--border-radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
    border: 1px solid var(--floresta);
    box-shadow: 0 8px 25px rgba(74, 92, 64, 0.2);
}

.btn-primary:hover {
    background: var(--obsidiana);
    border-color: var(--obsidiana);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 40, 32, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--floresta);
    border: 1.5px solid var(--salvia);
}

.btn-outline:hover {
    background-color: var(--floresta);
    color: var(--white);
    border-color: var(--floresta);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 92, 64, 0.15);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.05rem;
}

/* -------------------------------------------------------------
   HEADER & NAVBAR FIXED
------------------------------------------------------------- */

#main-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 100;
    background: linear-gradient(135deg, rgba(74, 92, 64, 0.85) 0%, rgba(44, 55, 38, 0.92) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(196, 170, 136, 0.25);
    border-radius: 28px;
    transition: var(--transition-smooth);
    padding: 14px 24px;
    box-shadow: 0 12px 40px rgba(44, 40, 32, 0.15);
}

#main-header.scrolled {
    top: 12px;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(74, 92, 64, 0.92) 0%, rgba(44, 55, 38, 0.96) 100%);
    box-shadow: 0 16px 48px rgba(44, 40, 32, 0.22);
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

#main-header.scrolled .brand-logo {
    height: 72px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(253, 250, 245, 0.88);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

/* Botão CTA WhatsApp no Header (Premium de Duas Linhas) */
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(44, 40, 32, 0.35);
    border: 1px solid rgba(196, 170, 136, 0.35);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-header-cta:hover {
    background: var(--ambar);
    border-color: var(--ambar);
    color: var(--obsidiana);
    box-shadow: 0 8px 24px rgba(196, 170, 136, 0.25);
    transform: translateY(-2px);
}

.btn-header-cta:hover i {
    color: var(--obsidiana);
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.btn-cta-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.btn-cta-subtitle {
    font-size: 0.62rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 1px;
}

.btn-cta-icon {
    font-size: 1.45rem;
    color: var(--menta);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--ambar);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--ambar);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: rgba(253, 250, 245, 0.12);
    border: 1px solid rgba(253, 250, 245, 0.2);
    color: rgba(253, 250, 245, 0.95);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background: rgba(253, 250, 245, 0.22);
    color: var(--white);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--creme-light);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: var(--floresta);
    font-size: 2.2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 80%;
}

.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--obsidiana);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--floresta);
    transform: scale(1.05);
}
.mobile-nav-link {
    font-size: 1.45rem;
}

.mobile-nav-links {
    gap: 22px;
}
/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */

.hero-section {
    position: relative;
    padding: 220px 0 140px;
    background: radial-gradient(circle at 10% 10%, rgba(200, 216, 190, 0.22) 0%, rgba(253, 250, 245, 0.95) 50%, rgba(232, 223, 208, 0.15) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-bg-elements {
    position: absolute;
    top: -5%;
    right: -10%;
    width: 50%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-10deg);
}

.hero-graphic-1 {
    width: 100%;
    height: auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.6rem;
    line-height: 1.15;
    color: var(--obsidiana);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 620px;
    font-weight: 300;
}

/* Indicators / Stats Horizontal Card (Glassmorphism) */
.hero-stats-card {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 52px;
    background: rgba(253, 250, 245, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(138, 158, 126, 0.2);
    border-radius: 20px;
    padding: 20px 32px;
    width: fit-content;
    box-shadow: 0 12px 40px rgba(74, 92, 64, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: var(--transition-smooth);
}

.hero-stats-card:hover {
    box-shadow: 0 20px 56px rgba(74, 92, 64, 0.12), inset 0 1px 0 rgba(255,255,255,0.7);
    border-color: rgba(138, 158, 126, 0.35);
    transform: translateY(-2px);
}

.stat-item-horizontal {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-fast);
}

.stat-icon-box {
    font-size: 1.75rem;
    color: var(--floresta);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(74, 92, 64, 0.08) 0%, rgba(138, 158, 126, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(138, 158, 126, 0.12);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.stat-item-horizontal:hover .stat-icon-box {
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
    border-color: var(--floresta);
    transform: scale(1.08);
}

.stat-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-num-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: var(--floresta);
    font-weight: 500;
    line-height: 1.1;
}

.stat-label-h {
    font-size: 0.73rem;
    color: var(--text-mid);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.25;
    margin-top: 2px;
}

.stat-label-h.font-medium {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-transform: none;
    font-size: 0.83rem;
    letter-spacing: 0;
    color: var(--text-dark);
}

.stat-divider-h {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent 0%, rgba(138, 158, 126, 0.3) 50%, transparent 100%);
}

/* Profile Card - Glowing Light Arc Behind (Premium Refinement) */
.profile-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 250, 245, 0.8);
    transition: var(--transition-smooth);
    overflow: visible;
    background: transparent;
}

/* Glowing Neon Arc behind the professional */
.profile-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -18px;
    right: 18px;
    bottom: 8px;
    border-radius: 120px 120px 0 0;
    border-left: 3px solid rgba(253, 250, 245, 0.85);
    border-top: 3px solid rgba(253, 250, 245, 0.7);
    filter: drop-shadow(0 0 16px rgba(253, 250, 245, 0.6));
    pointer-events: none;
    z-index: 1;
}

.profile-img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    z-index: 2;
    transition: var(--transition-smooth);
}

.profile-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.profile-card:hover .profile-img {
    transform: scale(1.02);
}

.profile-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: rgba(44, 40, 32, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 28px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(253, 250, 245, 0.2);
    color: var(--white);
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.profile-badge .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.profile-badge .role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--menta);
    margin-top: 4px;
    font-weight: 500;
}

/* -------------------------------------------------------------
   BENEFÍCIOS SECTION
------------------------------------------------------------- */

.benefits-section {
    padding: 140px 0;
    background-color: var(--white);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.25) 30%, rgba(196, 170, 136, 0.2) 50%, rgba(138, 158, 126, 0.25) 70%, transparent 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Stagger animation for benefit cards */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.22s; }
.benefit-card:nth-child(3) { animation-delay: 0.34s; }

.benefit-card {
    background: rgba(253, 250, 245, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 48px 36px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(138, 158, 126, 0.16);
    box-shadow: 0 10px 30px rgba(44, 40, 32, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--floresta) 0%, var(--salvia) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(74, 92, 64, 0.12);
    border-color: rgba(138, 158, 126, 0.45);
    background: rgba(253, 250, 245, 0.9);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px 4px 16px 4px;
    background: linear-gradient(135deg, rgba(138, 158, 126, 0.14) 0%, rgba(200, 216, 190, 0.10) 100%);
    border: 1px solid rgba(138, 158, 126, 0.18);
    color: var(--floresta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 32px;
    transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
    border-color: var(--floresta);
    border-radius: 4px 16px 4px 16px;
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: var(--obsidiana);
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* -------------------------------------------------------------
   ÁREAS DE ATUAÇÃO SECTION
------------------------------------------------------------- */

.areas-section {
    padding: 140px 0;
    background-color: var(--creme-light);
    position: relative;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.25) 30%, rgba(196, 170, 136, 0.2) 50%, rgba(138, 158, 126, 0.25) 70%, transparent 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.area-item {
    background: rgba(253, 250, 245, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 158, 126, 0.16);
    border-radius: var(--border-radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(44, 40, 32, 0.04);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--floresta) 0%, var(--salvia) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.area-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(138, 158, 126, 0.45);
    background: rgba(253, 250, 245, 0.95);
}

.area-item:hover::after {
    opacity: 1;
}

.area-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px 4px 16px 4px;
    background: linear-gradient(135deg, rgba(74, 92, 64, 0.1) 0%, rgba(138, 158, 126, 0.08) 100%);
    border: 1px solid rgba(138, 158, 126, 0.18);
    color: var(--floresta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.area-item:hover .area-icon {
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
    border-color: var(--floresta);
    border-radius: 4px 16px 4px 16px;
    box-shadow: 0 8px 20px rgba(74, 92, 64, 0.25);
    transform: scale(1.05);
}

.area-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--obsidiana);
    line-height: 1.3;
    letter-spacing: 0.1px;
}

/* -------------------------------------------------------------
   SOBRE SECTION
------------------------------------------------------------- */

.about-section {
    padding: 140px 0;
    background-color: var(--creme);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 88px;
    align-items: center;
}

.about-media {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 250, 245, 0.5);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-graphic {
    position: absolute;
    bottom: -8%;
    right: -8%;
    width: 38%;
    opacity: 0.18;
    pointer-events: none;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--floresta);
    margin-bottom: 28px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.about-text p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(138, 158, 126, 0.18);
    padding-top: 32px;
}

.about-value-card {
    background: rgba(253, 250, 245, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(138, 158, 126, 0.14);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(44, 40, 32, 0.02);
    transition: var(--transition-smooth);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(74, 92, 64, 0.08);
    border-color: rgba(138, 158, 126, 0.35);
    background: rgba(253, 250, 245, 0.85);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(138, 158, 126, 0.15) 0%, rgba(200, 216, 190, 0.10) 100%);
    border-radius: 12px;
    color: var(--floresta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
}

.about-value-card h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--obsidiana);
    line-height: 1.3;
}

/* -------------------------------------------------------------
   AUTORIDADE SECTION
------------------------------------------------------------- */

.authority-section {
    padding: 140px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.authority-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.25) 30%, rgba(196, 170, 136, 0.2) 50%, rgba(138, 158, 126, 0.25) 70%, transparent 100%);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1040px;
    margin: 0 auto 64px;
}

.authority-card {
    background: rgba(253, 250, 245, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 158, 126, 0.16);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    gap: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(44, 40, 32, 0.03);
}

.authority-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(74, 92, 64, 0.08);
    border-color: rgba(138, 158, 126, 0.35);
    background: rgba(253, 250, 245, 0.7);
}

.auth-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 92, 64, 0.08) 0%, rgba(138, 158, 126, 0.06) 100%);
    border: 1px solid rgba(138, 158, 126, 0.14);
    color: var(--floresta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.authority-card:hover .auth-icon-box {
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
    border-color: var(--floresta);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(74, 92, 64, 0.2);
}

.auth-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-card-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--obsidiana);
    line-height: 1.4;
}

.auth-card-content p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
}

.authority-disclaimer {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(138, 158, 126, 0.06);
    border: 1px dashed rgba(138, 158, 126, 0.3);
    border-radius: var(--border-radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.authority-disclaimer i {
    font-size: 1.8rem;
    color: var(--salvia);
    flex-shrink: 0;
}

.authority-disclaimer p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 400;
}

/* -------------------------------------------------------------
   SERVIÇOS SECTION
------------------------------------------------------------- */

.services-section {
    padding: 140px 0;
    background-color: var(--creme-light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.25) 30%, rgba(196, 170, 136, 0.2) 50%, rgba(138, 158, 126, 0.25) 70%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    max-width: 1040px;
    margin: 0 auto;
}

.service-card {
    background: rgba(253, 250, 245, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(138, 158, 126, 0.18);
    border-radius: var(--border-radius-lg);
    padding: 56px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 14px 40px rgba(44, 40, 32, 0.06), inset 0 1px 0 rgba(255,255,255,0.7);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(74, 92, 64, 0.14), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(138, 158, 126, 0.45);
    background: rgba(253, 250, 245, 0.95);
}

.service-card.highlighted {
    background: linear-gradient(145deg, var(--floresta) 0%, var(--floresta-dark) 60%, #2a3922 100%);
    border: 2px solid var(--ambar);
    color: var(--white);
    box-shadow: 0 24px 60px rgba(74, 92, 64, 0.28), 0 0 30px rgba(196, 170, 136, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-card.highlighted::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(200, 216, 190, 0.12) 0%, rgba(74, 92, 64, 0) 70%);
    border-radius: 0 var(--border-radius-lg) 0 100%;
    pointer-events: none;
}

.service-card.highlighted h3,
.service-card.highlighted p,
.service-card.highlighted i,
.service-card.highlighted strong {
    color: var(--white);
}

.service-tag-promo {
    position: absolute;
    top: 28px;
    right: 28px;
    background-color: var(--creme);
    color: var(--floresta);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.service-tag-promo.special {
    background-color: var(--ambar);
    color: var(--obsidiana);
}

.service-header-card h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.98rem;
    color: var(--text-mid);
    margin-bottom: 40px;
    font-weight: 300;
}

.service-features {
    list-style: none;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
}

.service-features li i {
    color: var(--salvia);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-card.highlighted .service-features li i {
    color: var(--menta);
}

.service-card.highlighted .btn-primary {
    background: var(--white);
    color: var(--floresta);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card.highlighted .btn-primary:hover {
    background: var(--creme);
    color: var(--obsidiana);
    border-color: var(--creme);
    transform: translateY(-3px);
}

.service-footer {
    margin-top: auto;
}

/* -------------------------------------------------------------
   DIFERENCIAIS SECTION
------------------------------------------------------------- */

.differentials-section {
    padding: 140px 0;
    background-color: var(--white);
    position: relative;
}

.differentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.25) 30%, rgba(196, 170, 136, 0.2) 50%, rgba(138, 158, 126, 0.25) 70%, transparent 100%);
}

/* Stagger animation for diff cards */
.diff-item-card:nth-child(1) { animation-delay: 0.08s; }
.diff-item-card:nth-child(2) { animation-delay: 0.18s; }
.diff-item-card:nth-child(3) { animation-delay: 0.28s; }
.diff-item-card:nth-child(4) { animation-delay: 0.38s; }

.diff-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: diff-counter;
}

.diff-item-card {
    background: rgba(253, 250, 245, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(44, 40, 32, 0.03);
    transition: var(--transition-smooth);
    border: 1px solid rgba(138, 158, 126, 0.16);
    counter-increment: diff-counter;
    position: relative;
    overflow: hidden;
}

.diff-item-card::before {
    content: counter(diff-counter, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: rgba(138, 158, 126, 0.10);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition-smooth);
}

.diff-item-card:hover::before {
    color: rgba(138, 158, 126, 0.18);
}

.diff-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(74, 92, 64, 0.1);
    border-color: rgba(138, 158, 126, 0.4);
    background: rgba(253, 250, 245, 0.8);
}

.diff-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--salvia);
    margin-bottom: 24px;
    border-bottom: 1.5px solid rgba(138, 158, 126, 0.2);
    padding-bottom: 20px;
    transition: var(--transition-fast);
}

.diff-item-card:hover .diff-icon-wrapper {
    color: var(--floresta);
    border-bottom-color: rgba(74, 92, 64, 0.35);
}

.diff-item-card h3 {
    font-size: 1.5rem;
    color: var(--obsidiana);
    margin-bottom: 14px;
}

.diff-item-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* -------------------------------------------------------------
   FAQ SECTION (Accordion)
------------------------------------------------------------- */

.faq-section {
    padding: 140px 0;
    background-color: var(--creme-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.25) 30%, rgba(196, 170, 136, 0.2) 50%, rgba(138, 158, 126, 0.25) 70%, transparent 100%);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-intro {
    position: sticky;
    top: 140px;
}

.faq-intro .section-title {
    text-align: left;
}

.faq-desc {
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    border: 1px solid rgba(138, 158, 126, 0.16);
    border-radius: var(--border-radius-md);
    padding: 12px 24px;
    background-color: rgba(247, 244, 236, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(44, 40, 32, 0.02);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(138, 158, 126, 0.45);
    background-color: rgba(247, 244, 236, 0.8);
    box-shadow: 0 10px 30px rgba(74, 92, 64, 0.06);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--obsidiana);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-trigger:hover {
    color: var(--floresta);
}

.icon-arrow {
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--salvia);
}

.accordion-trigger[aria-expanded="true"] .icon-arrow {
    transform: rotate(180deg);
    color: var(--floresta);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
    padding: 0 0 20px;
    border-top: 1px solid rgba(138, 158, 126, 0.1);
    margin-top: 8px;
    padding-top: 16px;
}

.accordion-inner p {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* -------------------------------------------------------------
   CTA FINAL SECTION
------------------------------------------------------------- */

.cta-final-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, var(--floresta) 0%, var(--floresta-dark) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 216, 190, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 216, 190, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-overlay-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(200, 216, 190, 0.15) 0%, rgba(74, 92, 64, 0) 70%);
    pointer-events: none;
    z-index: 2;
}

.cta-final-container {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(200, 216, 190, 0.9);
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(200, 216, 190, 0.25);
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--white);
}

.cta-title em {
    color: var(--ambar);
    font-style: italic;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(200, 216, 190, 0.85);
    margin-bottom: 52px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
}

.cta-final-section .btn-primary {
    background: var(--white);
    color: var(--floresta);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-final-section .btn-primary:hover {
    background: var(--creme);
    color: var(--obsidiana);
    border-color: var(--creme);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */

.main-footer {
    background: linear-gradient(160deg, #2C2820 0%, #1e2017 60%, #252820 100%);
    color: rgba(253, 250, 245, 0.65);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 170, 136, 0.6) 30%, rgba(196, 170, 136, 0.8) 50%, rgba(196, 170, 136, 0.6) 70%, transparent 100%);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 92, 64, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(253, 250, 245, 0.07);
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 52px;
    margin-bottom: 24px;
    opacity: 0.92;
    transition: var(--transition-fast);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand {
    position: relative;
}

.footer-brand::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--salvia), transparent);
    margin-top: 20px;
    margin-bottom: 4px;
    opacity: 0.5;
}

.footer-bio {
    font-size: 0.95rem;
    color: rgba(253, 250, 245, 0.55);
}

.footer-container h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer-container h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--ambar), transparent);
    border-radius: 2px;
}

.footer-info p,
.footer-legal p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: rgba(253, 250, 245, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.footer-info p i,
.footer-legal p i {
    color: var(--ambar);
    font-size: 1.05rem;
    opacity: 0.85;
    flex-shrink: 0;
}

.footer-info p:hover {
    color: rgba(253, 250, 245, 0.75);
}

.footer-info a {
    color: rgba(253, 250, 245, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-info a:hover {
    color: var(--ambar);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 32px 0;
    font-size: 0.82rem;
    text-align: center;
    color: rgba(253, 250, 245, 0.4);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.footer-gbs-contact {
    font-size: 0.72rem;
    color: rgba(253, 250, 245, 0.28);
    letter-spacing: 0.01em;
}

.footer-gbs-contact a {
    color: rgba(253, 250, 245, 0.35);
    text-decoration: none;
}

.footer-gbs-contact a:hover {
    color: rgba(253, 250, 245, 0.55);
}

/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
------------------------------------------------------------- */

@media (max-width: 1100px) and (min-width: 769px) {
    .brand-logo {
        height: 60px;
    }
    #main-header.scrolled .brand-logo {
        height: 60px;
    }
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.6rem;
    }

    .about-container {
        gap: 48px;
    }

    .diff-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    /* Header Mobile */
    .nav-menu,
    .header-cta {
        display: none;
    }

    .brand-logo {
        height: 46px;
    }

    #main-header.scrolled .brand-logo {
        height: 46px;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero-section {
        padding: 140px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 48px;
    }

    .stat-divider {
        display: none;
    }

    .hero-media {
        max-width: 420px;
        margin: 0 auto;
    }

    /* Spacings */
    .benefits-section,
    .areas-section,
    .about-section,
    .authority-section,
    .services-section,
    .differentials-section,
    .faq-section,
    .cta-final-section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .about-media {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-values {
        align-items: center;
    }

    /* Serviços */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-card {
        padding: 48px 32px;
    }

    /* Autoridade Mobile */
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .authority-card {
        padding: 32px 24px;
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .authority-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 12px;
    }

    /* FAQ Accordion */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-intro {
        position: static;
        text-align: center;
    }

    .faq-intro .section-title {
        text-align: center;
    }

    /* CTA Final */
    .cta-title {
        font-size: 2.6rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .diff-grid-layout {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .area-item {
        padding: 28px 18px;
        gap: 12px;
    }

    .area-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .area-label {
        font-size: 0.88rem;
    }

    .service-card {
        padding: 40px 24px;
    }

    .service-header-card h3 {
        font-size: 1.8rem;
    }
}

/* -------------------------------------------------------------
   MICRO-ANIMAÇÕES (CLASSES DE EFEITO)
------------------------------------------------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 92, 64, 0); }
    50% { box-shadow: 0 0 0 6px rgba(74, 92, 64, 0.05); }
}

.fade-in-up {
    opacity: 0;
}

.fade-in-up.active {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays para grupos de cards */
.benefit-card.fade-in-up.active { animation-name: fadeInUp; }
.benefit-card:nth-child(1).fade-in-up.active { animation-delay: 0.0s; }
.benefit-card:nth-child(2).fade-in-up.active { animation-delay: 0.12s; }
.benefit-card:nth-child(3).fade-in-up.active { animation-delay: 0.24s; }

.diff-item-card.fade-in-up.active { animation-name: fadeInUp; }
.diff-item-card:nth-child(1).fade-in-up.active { animation-delay: 0.0s; }
.diff-item-card:nth-child(2).fade-in-up.active { animation-delay: 0.1s; }
.diff-item-card:nth-child(3).fade-in-up.active { animation-delay: 0.2s; }
.diff-item-card:nth-child(4).fade-in-up.active { animation-delay: 0.3s; }

.about-media.fade-in-up.active { animation-name: fadeInLeft; }
.about-content.fade-in-up.active { animation-name: fadeInRight; }

/* Refinamento dos separadores entre seções */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(138, 158, 126, 0.3) 50%, transparent 100%);
    margin: 0;
}
/* ==================================================
   RESPONSIVIDADE MOBILE
================================================== */

@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    .hero-container,
    .about-container,
    .services-grid,
    .faq-container,
    .benefits-grid,
    .diff-grid-layout,
    .footer-container {
        grid-template-columns: 1fr !important;
    }

    .hero-section {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1rem;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-stats-card {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .stat-divider-h {
        display: none;
    }

    .profile-card {
        margin-top: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 32px;
    }

    .nav-menu,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    #main-header {
        width: calc(100% - 20px);
        padding: 12px 16px;
    }

    .brand-logo {
        height: 46px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
    }

    .profile-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .profile-badge .name {
        font-size: 1.2rem;
    }
}