/* Design System & Variables */
:root {
    --primary-color: #5b21b6; /* Rich Purple */
    --primary-light: #7c3aed;
    --accent-color: #d97706; /* Warm Amber/Gold */
    --accent-light: #f59e0b;
    --text-main: #f9fafb; /* Off-white for high contrast on dark bg */
    --text-muted: #d1d5db; /* Light gray */
    --bg-overlay: rgba(10, 15, 30, 0.45); /* Dark screen for legibility */
    --glass-bg: rgba(15, 23, 42, 0.65); /* Modern slate glass */
    --glass-border: rgba(255, 255, 255, 0.08);
    --gold: #f59e0b;
    --font-sans: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-lg: 24px;
    --border-radius-md: 12px;
}

/* CSS Reset & Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: #0b0f19;
    color: var(--text-main);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0f19;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mobile-only {
    display: none !important;
}

/* Header & Navigation Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(11, 15, 25, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(11, 15, 25, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.logo-icon {
    color: var(--accent-light);
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.3));
    animation: float 4s ease-in-out infinite;
}

.logo-text {
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-light);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    color: var(--accent-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 16px;
}

.text-gold {
    color: var(--gold);
}

/* Hero Section Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Leave space for Header */
    
    /* Background Default - Desktop (16:9) */
    background-image: url('https://lueblrcuerycimfpcvba.supabase.co/storage/v1/object/public/SANTINHO%20VIRTUAL/bg%2016x9%20tela%201.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Dark subtle overlay - DISABLED TO MAKE BG 100% SHARP */
.hero-overlay {
    display: none;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 100px);
    width: 100%;
}

.hero-content-wrapper {
    max-width: 650px;
    width: 100%;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Text directly on top of BG - No Box */
.hero-card {
    position: relative;
    overflow: visible;
    padding: 0;
}

/* Glow element disabled */
.hero-card::before {
    display: none;
}

.hero-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    color: #421657;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight-yellow {
    color: var(--accent-light);
}

.hero-title .highlight {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #421657;
}

.hero-description {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    color: #421657;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: #421657;
    font-weight: 600;
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--accent-light);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

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

/* Media Queries for Responsiveness */

/* Responsive Background Change & Typography */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 768px) {
    /* Set Mobile Background - (9:16) */
    .hero-section {
        background-image: url('https://lueblrcuerycimfpcvba.supabase.co/storage/v1/object/public/SANTINHO%20VIRTUAL/bg-9X16-tela1.jpg');
        background-attachment: scroll;
        background-position: center top;
        padding-top: 80px;
        min-height: 100vh;
        display: flex;
        align-items: flex-end; /* Align card to bottom on mobile */
        padding-bottom: 40px;
    }

      .hero-overlay {
          display: none;
      }

      .hero-container {
          min-height: auto;
          padding: 0 16px;
      }

      .hero-card {
          padding: 0;
          border-radius: 0;
          background: transparent;
          border: none;
          backdrop-filter: none;
          box-shadow: none;
      }

    .nav-menu {
        display: none; /* We can add mobile menu in future steps */
    }

    .header-cta {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-title.mobile-only {
        font-family: 'Dancing Script', cursive;
        font-weight: 600;
        font-size: 3.4rem;
        line-height: 1.1;
        color: #fff;
        text-align: center;
        margin: 0 auto;
        letter-spacing: 0;
    }

    .hero-description {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 20px;
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

/* Legacy Section (O Novo Significado da Lembrança) */
.legacy-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #421657;
    position: relative;
    z-index: 10;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.legacy-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legacy-content .gold-text {
    color: var(--accent-color);
}

.legacy-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #421657;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.legacy-text {
    font-size: 1.15rem;
    color: #5b4f66; /* Elegant soft dark purple-slate for reading on white */
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 400;
}

.legacy-text:last-of-type {
    margin-bottom: 0;
}

.legacy-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.legacy-img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* Media Query overrides for Legacy Section */
@media (max-width: 1024px) {
    .legacy-grid {
        gap: 40px;
    }
    .legacy-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .legacy-section {
        padding: 70px 0;
    }
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .legacy-content {
        align-items: center;
        text-align: center;
    }
    .legacy-img {
        max-width: 270px;
    }
}

/* Video Section (Conheça o Santinho) */
.video-section {
    background-color: #f8fafc;
    padding: 100px 0;
    color: #421657;
    text-align: center;
    position: relative;
    z-index: 10;
}

.video-section .section-title {
    color: #421657;
    margin-bottom: 40px;
}

.video-section .section-subtitle {
    color: var(--accent-color);
}

.video-wrapper {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 9;
    background: #000;
    border: 4px solid #ffffff;
}

.app-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-wrapper.mobile-only {
    max-width: 340px;
    aspect-ratio: 9 / 16;
}

/* Responsiveness for Video Section */
@media (max-width: 768px) {
    .video-section {
        padding: 70px 0;
    }
    .video-wrapper {
        border-radius: var(--border-radius-md);
        border-width: 2px;
    }
}

/* Steps Section (Como Funciona) */
.steps-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 40%),
                #0b0f19;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    background: linear-gradient(120deg, var(--accent-light) 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.step-card {
    background: rgba(30, 41, 59, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.25);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
    font-feature-settings: "tnum";
}

.step-card:hover .step-number {
    color: rgba(124, 58, 237, 0.08);
    transform: scale(1.05);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.step-card:hover .step-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
    transform: rotate(6deg) scale(1.05);
}

.step-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.step-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive steps styling */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .step-card {
        padding: 36px 24px 32px 24px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .section-desc {
        font-size: 1rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .step-card {
        align-items: center;
        text-align: center;
    }
    .step-icon-wrapper {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Mockup Matching Ethereal Grace Audience Section
   ========================================================================== */
.audience-section {
    background: radial-gradient(circle at 50% 20%, rgba(167, 139, 250, 0.06) 0%, transparent 60%),
                #13121a;
    padding: 100px 0;
    color: #f9fafb;
    position: relative;
    z-index: 10;
}

.audience-section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -1px;
}

.purple-glow-text {
    color: #c084fc;
    background: linear-gradient(120deg, #c084fc 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audience-section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e9bc66; /* Gold/Beige */
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.audience-section-desc {
    font-size: 0.95rem;
    color: #555061; /* Very faint purple-grey */
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Translucent Dark Glassmorphic Cards */
.audience-box {
    background: rgba(22, 21, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; /* Smooth rounded corners */
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.audience-box:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, 0.25);
    box-shadow: 0 40px 80px rgba(167, 139, 250, 0.08), 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Header inside Card */
.card-badge-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-badge-icon {
    font-size: 1.3rem;
}

.card-badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.family-box .card-badge-icon,
.family-box .card-badge-label {
    color: #a78bfa; /* Soft purple */
}

.business-box .card-badge-icon,
.business-box .card-badge-label {
    color: #e9bc66; /* Soft gold */
}

.audience-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.audience-card-desc {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Badges Capsules (Card 1) */
.audience-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.15);
    color: #c084fc;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-item i {
    font-size: 0.9rem;
}

/* Differentials Grid (Card 2) */
.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.diff-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(233, 188, 102, 0.25);
}

.diff-icon {
    font-size: 1.4rem;
    color: #e9bc66; /* Soft gold */
    margin-bottom: 12px;
}

.diff-card h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff; /* White text */
    line-height: 1.35;
    text-align: left;
}

/* Card Bottom Images */
.emotional-image-container {
    margin-top: auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16 / 9;
    width: 100%;
    z-index: 2;
}

.emotional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-box:hover .emotional-img {
    transform: scale(1.05);
}

.emotional-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 16, 22, 0.45) 0%, transparent 60%);
    pointer-events: none;
}

/* Responsividade: Layout para Mobile & Telas menores */
@media (max-width: 1024px) {
    .audience-section {
        padding: 80px 0;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 580px;
        margin: 0 auto;
    }
    
    .audience-box {
        padding: 36px;
    }
    
    .audience-card-title {
        font-size: 1.75rem;
    }
    
    .audience-section-title {
        font-size: 2.3rem;
    }
}

/* ==========================================================================
   Footer Section & Fale Conosco
   ========================================================================== */
.footer-section {
    background-color: #090e1a;
    padding: 40px 0;
    color: #f3f4f6;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ==========================================================================
   Seção Fale Conosco (Contact Section)
   ========================================================================== */
.contact-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: #1f2937;
    position: relative;
    z-index: 10;
}

.contact-container {
    max-width: 1140px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* Coluna da Esquerda (Texto e CTA) */
.contact-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #311847; /* Deep purple */
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.contact-description {
    font-size: 1.1rem;
    color: #4b5563; /* Gray text */
    line-height: 1.65;
    margin-bottom: 32px;
}

.contact-prompt {
    font-size: 1.35rem;
    font-weight: 700;
    color: #d97706; /* Gold/Amber */
    margin-bottom: 24px;
}

/* CTA Button WhatsApp - Gold styled */
.btn-whatsapp-gold {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    color: #0f172a; /* Dark text */
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: none;
}

.btn-whatsapp-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fde047 0%, #d97706 100%);
}

.btn-whatsapp-gold i {
    font-size: 1.3rem;
}

/* Coluna da Direita (Card de Contato) */
.contact-card-col {
    display: flex;
    justify-content: flex-end;
}

.contact-box-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-item-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f3e8ff; /* Light violet */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed; /* Purple icon */
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-details {
    display: flex;
    flex-direction: column;
}

.contact-item-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item-value:hover {
    color: #7c3aed;
}

.contact-divider-line {
    border: 0;
    height: 1px;
    background-color: #f1f5f9;
    margin: 28px 0;
}

/* Image with location tag */
.contact-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    border: 1px solid #f1f5f9;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-location-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-location-tag i {
    color: #f59e0b; /* Gold pin */
}

/* Bottom Footer Area */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 36px;
    font-size: 0.9rem;
    color: #6b7280;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #d1d5db;
}

/* ==========================================================================
   Premium Desktop Mockups & Layouts (16:9)
   ========================================================================== */
.hero-tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-tag-premium .tag-line {
    width: 24px;
    height: 2px;
    background: var(--accent-light);
    display: inline-block;
}

.hero-desc-container {
    position: relative;
    padding-left: 28px;
    margin-top: 32px;
}

.hero-desc-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-light) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

/* Smartphone Mockup CSS (Desktop 16:9) */
@keyframes float-mockup {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.desktop-phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    border: 10px solid #1e293b;
    border-radius: 40px;
    background-color: #0b0f19;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 20px rgba(124, 58, 237, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    animation: float-mockup 6s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.desktop-phone-mockup:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), 0 0 30px rgba(245, 158, 11, 0.25);
}

.desktop-phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 5;
}

.phone-dynamic-island {
    width: 70px;
    height: 18px;
    background: #000;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    margin-top: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 30px;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.mockup-glow-back {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}

/* Monitor Mockup CSS (Desktop 16:9) */
.monitor-mockup {
    position: relative;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
}

.monitor-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 14px solid #1e293b;
    border-bottom: 24px solid #1e293b; /* Thicker bottom bezel for monitor style */
    border-radius: 20px 20px 0 0;
    background: #000;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* LED Indicator light on monitor bezel */
.monitor-screen::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #f59e0b; /* Golden LED */
    border-radius: 50%;
    box-shadow: 0 0 8px #f59e0b, 0 0 16px #f59e0b;
    z-index: 12;
    animation: led-blink 3s infinite;
}

@keyframes led-blink {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 4px #f59e0b;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px #f59e0b, 0 0 15px #f59e0b;
    }
}

.monitor-stand {
    width: 70px;
    height: 50px;
    background: linear-gradient(90deg, #334155, #1f2937);
    box-shadow: inset 0 10px 15px rgba(0, 0, 0, 0.3);
}

.monitor-base {
    width: 240px;
    height: 12px;
    background: linear-gradient(90deg, #475569, #334155);
    border-radius: 6px 6px 0 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

/* Video Player Custom Overlay styles */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    cursor: pointer;
}

.video-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    animation: button-glow-pulse 2s infinite;
}

@keyframes button-glow-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.85;
    }
    100% {
        transform: scale(0.85);
        opacity: 0.5;
    }
}

.custom-play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.7rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding-left: 6px; /* Perfect alignment for play triangle */
}

.video-overlay:hover .custom-play-btn {
    transform: scale(1.12);
    background: var(--accent-light);
    color: #000;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
    border-color: transparent;
}

.video-overlay-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-overlay:hover .video-overlay-text {
    color: var(--accent-light);
    transform: translateY(2px);
    text-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}

/* Split Grid CSS */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-left-col .footer-subtitle {
    margin-bottom: 12px;
}

.contact-left-col .footer-title {
    margin-bottom: 20px;
    text-align: left;
}

.contact-left-col .footer-desc {
    text-align: left;
    margin: 0 0 32px 0;
}

.contact-left-col .cta-divider {
    margin: 0 0 32px 0;
}

.contact-left-col .footer-cta-title {
    margin-bottom: 0;
}

.contact-right-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.desktop-only-divider {
    display: block;
}

.desktop-only-title {
    display: block;
}

.mobile-only-title {
    display: none;
}

/* Contact Premium Grid (Desktop 16:9 - styled like Section 3) */
.contact-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-premium-card {
    background: rgba(30, 41, 59, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
}

.contact-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.contact-premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.25);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(124, 58, 237, 0.05);
}

.contact-premium-card:hover::before {
    opacity: 1;
}

/* Watermark styles (Icon inside background like step number) */
.contact-watermark {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.contact-premium-card:hover .contact-watermark {
    color: rgba(245, 158, 11, 0.05);
    transform: scale(1.08) rotate(-5deg);
}

/* Icon Wrapper styled like Section 3 */
.contact-premium-card .contact-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.contact-premium-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
    transform: rotate(6deg) scale(1.05);
}

/* Custom icon hover colors for specific platforms */
.contact-whatsapp-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, #25D366 0%, #1eaf52 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-premium-card .contact-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.contact-premium-card .contact-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    max-width: 260px;
}

.contact-premium-card .contact-card-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.contact-premium-card:hover .contact-card-link {
    color: #fff;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Adjust WhatsApp Pulsing Button for Card */
.contact-premium-card .btn-whatsapp-pulsing {
    padding: 14px 28px;
    font-size: 0.95rem;
    border-radius: 12px;
    width: auto;
    min-width: 180px;
    z-index: 1;
    animation: pulse-whatsapp 2.5s infinite;
}

/* ==========================================================================
   Responsive Settings for New Sections
   ========================================================================== */
@media (max-width: 1024px) {
    .audience-grid {
        gap: 32px;
        margin-top: 40px;
    }
    
    .audience-box {
        padding: 48px 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info-col {
        align-items: center;
        text-align: center;
    }
    
    .contact-card-col {
        justify-content: center;
    }
    
    .contact-box-card {
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {

    .footer-section {
        padding: 30px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    /* Contact Section Mobile Overrides */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-box-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .contact-card-item {
        gap: 16px;
    }
    
    .contact-item-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    
    .contact-item-value {
        font-size: 1.05rem;
    }
    
    .btn-whatsapp-gold {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    /* Mobile Resets to keep 9x16 layout untouched */
    .hero-desc-container {
        border-left: none;
        padding-left: 0;
        margin-top: 0;
    }
    
    .hero-desc-container::before {
        display: none !important;
    }

    .desktop-phone-mockup {
        width: 100%;
        max-width: 270px;
        height: auto;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        display: block;
        animation: none !important;
    }
    
    .desktop-phone-mockup::after,
    .phone-speaker,
    .phone-home-button,
    .phone-dynamic-island,
    .mockup-glow-back {
        display: none !important;
    }
    
    .phone-screen {
        width: 100%;
        height: auto;
        margin-top: 0;
        overflow: visible;
        background: transparent;
    }

    .monitor-mockup {
        max-width: 340px;
    }
    
    .monitor-screen {
        border: 2px solid #ffffff;
        border-radius: var(--border-radius-md);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }
    
    .monitor-screen::before {
        display: none !important;
    }
    
    .monitor-stand,
    .monitor-base {
        display: none !important;
    }

    .desktop-only-divider {
        display: none !important;
    }
    
    .desktop-only-title {
        display: none !important;
    }
    
    .mobile-only-title {
        display: block;
    }
}


