/* ==========================================================================
   DESIGN SYSTEM & VARIABLES — CONTATU LANDING PAGE
   ========================================================================== */

/* @font-face declarations for local Gilroy fonts */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
         url('../fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
         url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2'),
         url('../fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
         url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Extrabold.woff2') format('woff2'),
         url('../fonts/Gilroy-Extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Color Palette */
    --color-burgundy: #7A1E3C;      /* Borgonha Vermelho - Primária, CTAs, Top Bar */
    --color-burgundy-deep: #5E1830; /* Vinho Profundo - Textos de destaque, Nav, Hovers */
    --color-rose-old: #A56A7E;      /* Rosa Antigo - Ícones, destaques secundários */
    --color-gold: #C8B08A;          /* Dourado Areia - Botões secundários, detalhes premium */
    --color-rose-light: #E8D9DE;    /* Rosa Claro - Alternância de fundos */
    --color-almost-white: #F7F1F3;  /* Quase Branco - Fundo principal da página */
    --color-white: #FFFFFF;         /* Branco - Cards, Form */
    --color-dark: #1D202B;          /* Azul/Cinza Corporativo Escuro - Seções escuras, Footer */
    --color-text-dark: #2A101A;     /* Texto Escuro Principal */
    --color-text-muted: #554245;    /* Texto Muted */
    
    /* Layout & Styling */
    --font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(42, 16, 26, 0.05);
    --shadow-md: 0 8px 16px rgba(42, 16, 26, 0.08);
    --shadow-lg: 0 16px 32px rgba(42, 16, 26, 0.12);
    --shadow-premium: 0 24px 48px rgba(94, 24, 48, 0.06);
    --container-max-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-almost-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

ul {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-almost-white);
}
::-webkit-scrollbar-thumb {
    background: var(--color-rose-old);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-burgundy);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 7rem 0;
    }
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-burgundy-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-burgundy) 0%, var(--color-gold) 100%);
    margin: 0 auto 3rem auto;
    border-radius: var(--border-radius-full);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-burgundy-deep) 0%, var(--color-burgundy) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Material Symbols vertical alignment helper */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    display: inline-block;
    overflow: visible;
    line-height: 1;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    border-bottom: 2px solid var(--color-burgundy-deep);
}

.btn-primary:hover {
    background-color: var(--color-burgundy-deep);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-bottom: 2px solid #b29c78;
}

.btn-secondary:hover {
    opacity: 0.95;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-burgundy);
    color: var(--color-burgundy);
    background-color: transparent;
}

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

.btn-white {
    background-color: var(--color-white);
    color: var(--color-burgundy-deep);
    border-bottom: 2px solid var(--color-almost-white);
}

.btn-white:hover {
    background-color: var(--color-almost-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--color-burgundy);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-burgundy-deep);
    display: none; /* Hidden on mobile */
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item strong {
    color: var(--color-white);
}

.top-bar-icon {
    font-size: 1rem;
    color: var(--color-gold);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.shrink {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 135px;
    transition: var(--transition-smooth);
}

.main-header.shrink .nav-container {
    height: 90px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.shrink .logo-img {
    height: 80px;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-burgundy);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-burgundy-deep);
}

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

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: block;
    }
}

/* Mobile Nav Elements */
.mobile-toggle {
    display: block;
    cursor: pointer;
    color: var(--color-text-dark);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.mobile-toggle:hover {
    color: var(--color-burgundy);
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu Panel */
.mobile-nav-panel {
    position: fixed;
    top: 135px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-rose-light);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 99;
}

.main-header.shrink + .mobile-nav-panel {
    top: 90px;
}

.mobile-nav-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-burgundy-deep);
    padding-left: 0.5rem;
}

.mobile-cta {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 4rem 0 6rem 0;
    background-image: linear-gradient(to right, rgba(29, 32, 43, 0.95) 0%, rgba(29, 32, 43, 0.85) 60%, rgba(29, 32, 43, 0.4) 100%), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center top;
    color: var(--color-white);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0 12rem 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    max-width: 680px;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-description strong {
    color: var(--color-white);
    font-weight: 700;
}

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

.hero-card {
    background-color: rgba(29, 32, 43, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 176, 138, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: none; /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .hero-card {
        display: block;
    }
}

.hero-card-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.hero-card-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-card-author {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ==========================================================================
   VALUES & TRUST CARDS (Overlapping Hero)
   ========================================================================== */
.trust-cards {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .trust-cards {
        margin-top: -5rem;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--color-burgundy);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 32, 43, 0.35);
    border-top-color: var(--color-gold);
}

.trust-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-gold);
    font-size: 1.75rem;
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon-wrapper {
    color: var(--color-white);
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==========================================================================
   SOCIAL PROOF / NUMBERS SECTION
   ========================================================================== */
.numbers {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-rose-light);
    position: relative;
}

.numbers::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-color: rgba(122, 30, 60, 0.02);
    border-radius: var(--border-radius-full);
    filter: blur(80px);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .numbers-grid {
        grid-template-columns: 1.12fr 0.88fr;
    }
}

.numbers-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-burgundy-deep);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .numbers-content h2 {
        font-size: 2.25rem;
    }
}

.numbers-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.numbers-card {
    background-color: var(--color-almost-white);
    border: 1px solid var(--color-rose-light);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.numbers-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-burgundy) 0%, var(--color-gold) 100%);
}

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

.number-item {
    text-align: center;
}

.number-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.number-sublabel {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-burgundy-deep);
    margin-bottom: 0.25rem;
}

.number-desc {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (min-width: 480px) {
    .number-value {
        font-size: 3rem;
    }
}

/* ==========================================================================
   SERVICES GRID (Clean & Elegant)
   ========================================================================== */
.services {
    background-color: var(--color-almost-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Center the 5th card when it's alone on a 2-col row (tablet) */
@media (min-width: 640px) and (max-width: 1023px) {
    .service-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 1rem);
        justify-self: center;
    }
}

/* Center the last 2 cards on a 3-col grid (desktop with 5 items) */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .service-card {
        grid-column: span 2;
    }
    
    /* Last 2 cards: offset to center them */
    .service-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    
    .service-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(165, 106, 126, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 176, 138, 0.35);
}

.service-card-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, rgba(122, 30, 60, 0.08) 0%, rgba(200, 176, 138, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card-icon-wrap .material-symbols-outlined {
    font-size: 2rem;
    color: var(--color-burgundy);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon-wrap {
    background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-deep) 100%);
    transform: scale(1.05);
}

.service-card:hover .service-card-icon-wrap .material-symbols-outlined {
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-burgundy-deep);
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-burgundy) 0%, var(--color-gold) 100%);
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
    margin-top: auto;
}

.service-card:hover .service-card-accent {
    width: 80px;
}

/* Section Tag Label (Utility) */
.bento-info-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-rose-old);
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ==========================================================================
   DIFFERENTIALS SECTION
   ========================================================================== */
.differentials {
    background-color: var(--color-white);
    position: relative;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.diff-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.diff-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: var(--transition-smooth);
}

.diff-image-wrapper:hover .diff-image {
    transform: scale(1.05);
}

.diff-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(94, 24, 48, 0.45) 0%, rgba(29, 32, 43, 0.2) 100%);
    pointer-events: none;
}

/* Floating card on image */
.diff-floating-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-gold);
    max-width: 250px;
    display: none;
}

@media (min-width: 480px) {
    .diff-floating-card {
        display: block;
    }
}

.diff-floating-icon {
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.diff-floating-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.diff-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.diff-item:last-child {
    margin-bottom: 0;
}

.diff-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-almost-white);
    border: 1px solid var(--color-rose-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.diff-item:hover .diff-icon-box {
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: var(--color-white);
}

.diff-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-burgundy-deep);
    margin-bottom: 0.5rem;
}

.diff-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT / TEAM SECTION
   ========================================================================== */
.about {
    background-color: var(--color-rose-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(200, 176, 138, 0.15);
    border-radius: var(--border-radius-full);
    filter: blur(100px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-burgundy-deep);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
}

.about-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-box-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .about-box-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-rose-old);
}

.about-box-secondary {
    border-left-color: var(--color-gold);
}

.about-box-icon {
    font-size: 2rem;
    color: var(--color-rose-old);
    margin-bottom: 0.75rem;
}

.about-box-secondary .about-box-icon {
    color: var(--color-gold);
}

.about-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-burgundy-deep);
    margin-bottom: 0.5rem;
}

.about-box p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    transition: var(--transition-smooth);
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 32, 43, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(122, 30, 60, 0.9) 0%, rgba(94, 24, 48, 0.9) 100%), url('../img/hero-bg.png'); /* Reusable fallback */
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(200, 176, 138, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-banner h2 {
        font-size: 2.75rem;
    }
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.contact-single {
    max-width: 800px;
    text-align: center;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-column h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info-column > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.contact-methods-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-methods-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-method-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--border-radius-md);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.contact-method-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 176, 138, 0.2);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(122, 30, 60, 0.15);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.contact-method-details p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-method-details a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-method-details a:hover {
    color: var(--color-gold);
}

/* WhatsApp Float / CTA */
.whatsapp-cta {
    background-color: #25D366;
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
}

.whatsapp-cta:hover {
    background-color: #20BA5A;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.whatsapp-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.whatsapp-text h4 {
    font-size: 1rem;
    font-weight: 700;
}

.whatsapp-text p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.whatsapp-arrow {
    margin-left: auto;
    font-size: 1.5rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
}

.footer-brand img {
    height: 140px;
    width: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.875rem;
}

.footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 0.25rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
}

.footer-contact-icon {
    color: var(--color-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.founder-section {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .founder-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.founder-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.founder-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
    transition: var(--transition-smooth);
}

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

.founder-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(29, 32, 43, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 176, 138, 0.3);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
}

.founder-image-badge .material-symbols-outlined {
    color: var(--color-gold);
    font-size: 2rem;
}

.founder-image-badge div {
    display: flex;
    flex-direction: column;
}

.founder-image-badge strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.founder-image-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.founder-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-burgundy-deep);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .founder-content h2 {
        font-size: 2.5rem;
    }
}

.founder-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.founder-text {
    font-size: 0.975rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.founder-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .founder-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

.founder-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-almost-white);
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--color-gold);
    transition: var(--transition-smooth);
}

.founder-highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--color-burgundy);
}

.founder-highlight-item .material-symbols-outlined {
    color: var(--color-burgundy);
    font-size: 1.5rem;
}

.founder-highlight-item span {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* ==========================================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ========================================================================== */

