/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - MECHAS HAIR
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #08080a;
    --bg-secondary: #0f0f14;
    --bg-tertiary: #171721;
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Logo Colors */
    --accent-pink: #e61e72;      /* Vibrant Pink from Logo */
    --accent-pink-hover: #f03e8a;
    --accent-pink-glow: rgba(230, 30, 114, 0.25);
    
    --accent-cyan: #00a8c6;      /* Vibrant Turquesa/Ciano from Logo */
    --accent-cyan-hover: #00c0e2;
    --accent-cyan-glow: rgba(0, 168, 198, 0.25);
    
    --success: #10b981;
    --whatsapp-green: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.25);
    
    /* Layout Variables */
    --container-max-width: 1200px;
    --header-height: 85px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --glow-shadow-pink: 0 0 20px var(--accent-pink-glow);
    --glow-shadow-cyan: 0 0 20px var(--accent-cyan-glow);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(15, 15, 20, 0.7);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-full);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

/* ==========================================================================
   TYPOGRAPHY & HELPER CLASSES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

/* Gradient text styles */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-pink) 20%, var(--accent-cyan) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: linear-gradient(135deg, var(--accent-cyan) 10%, #00f5ff 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    color: var(--accent-pink);
}

.section-tagline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-pink), #c7125e);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 30, 114, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 30, 114, 0.6), var(--glow-shadow-pink);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-cyan);
}
.btn-outline:hover {
    background: var(--accent-cyan-glow);
    box-shadow: var(--glow-shadow-cyan);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), var(--whatsapp-glow);
}

.w-full {
    width: 100%;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 30, 114, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(230, 30, 114, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 30, 114, 0);
    }
}
.pulse-btn {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--whatsapp-green);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: wa-pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--bg-tertiary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: all var(--transition-fast);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(8, 8, 10, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 2px solid var(--accent-pink);
    transition: transform var(--transition-bounce);
}
.logo:hover .logo-img {
    transform: rotate(15deg) scale(1.05);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    transition: width var(--transition-fast);
    border-radius: var(--border-radius-full);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* Hamburger lines styling */
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
    transition: background-color var(--transition-fast);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform var(--transition-fast);
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    bottom: -8px;
}

/* Hamburger active transformation */
.mobile-nav-toggle.active .hamburger {
    background-color: transparent;
}
.mobile-nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(230, 30, 114, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 168, 198, 0.05) 0%, transparent 40%);
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: var(--border-radius-full);
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink-glow);
    top: -100px;
    left: -100px;
}
.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan-glow);
    bottom: -200px;
    right: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.trust-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 168, 198, 0.08);
    border: 1px solid rgba(0, 168, 198, 0.2);
    color: var(--accent-cyan);
    padding: 8px 18px;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.trust-tag i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}
.stat-number::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-pink);
    margin-top: 4px;
    border-radius: var(--border-radius-full);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 5;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glow-border {
    position: relative;
}
.glow-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}
.main-image-container:hover .hero-main-img {
    transform: scale(1.04);
}

.floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 15, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.floating-badge:hover {
    background: rgba(15, 15, 20, 0.95);
    border-color: rgba(37, 211, 102, 0.55);
    transform: translateY(-2px);
}

.badge-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffd700; /* Gold */
}

.decor-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--accent-cyan-glow), var(--accent-pink-glow));
    z-index: 1;
    filter: blur(5px);
}

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

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.how-it-works-section {
    background-color: var(--bg-secondary);
}

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

.step-card {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    position: relative;
}
.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 168, 198, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--accent-cyan-glow);
}

.step-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(230, 30, 114, 0.08);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform var(--transition-bounce);
}
.step-card:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-pink);
    color: white;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--accent-pink);
    transition: color var(--transition-fast);
}
.step-card:hover .step-icon {
    color: white;
}

.step-number-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: var(--border-radius-full);
    background: var(--accent-cyan);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-tertiary);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.benefits-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.specialist-photo-container {
    width: 100%;
    max-width: 440px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-tertiary);
}

.specialist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-smooth);
}

.specialist-photo-container:hover .specialist-photo {
    transform: scale(1.03);
}

.specialist-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 15, 20, 0.75);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.specialist-badge i {
    color: var(--accent-cyan);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon-box {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: rgba(0, 168, 198, 0.08);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 168, 198, 0.15);
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   CRITERIOS DE COTACAO
   ========================================================================== */
.pricing-criteria-section {
    background-color: var(--bg-secondary);
}

.criteria-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.criteria-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.criteria-tab:hover,
.criteria-tab.active {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: white;
    box-shadow: var(--glow-shadow-pink);
    transform: translateY(-2px);
}

.criteria-panel {
    display: none;
    animation: fadeIn var(--transition-smooth) forwards;
}

.criteria-panel.active {
    display: block;
}

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

.criteria-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.criteria-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 198, 0.3);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3), var(--glow-shadow-cyan);
}

.criteria-card.featured {
    border-color: rgba(230, 30, 114, 0.35);
    box-shadow: var(--glow-shadow-pink);
}

.featured-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    color: white;
    border-radius: var(--border-radius-full);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.criteria-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.criteria-card-header h3 {
    font-size: 1.35rem;
}

.criteria-card-header span {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.criteria-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.criteria-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.criteria-list i {
    color: var(--accent-cyan);
    width: 18px;
    text-align: center;
}

.btn-service-whatsapp {
    width: 100%;
    background: rgba(37, 211, 102, 0.1);
    color: white;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.btn-service-whatsapp:hover {
    background: var(--whatsapp-green);
    transform: translateY(-2px);
    box-shadow: var(--whatsapp-glow);
}

/* ==========================================================================
   SIMULADOR INTERATIVO
   ========================================================================== */
.simulator-section {
    background-color: var(--bg-secondary);
}

.simulator-card {
    background: var(--bg-tertiary);
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.simulator-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    position: relative;
}
.simulator-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: 1;
    transform: translateY(-50%);
}

.step-indicator {
    position: relative;
    z-index: 2;
    background: var(--bg-tertiary);
    padding: 8px 18px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--glass-border);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition-smooth);
}
.step-indicator.active {
    color: white;
    border-color: var(--accent-pink);
    background: var(--accent-pink);
    box-shadow: var(--glow-shadow-pink);
}
.step-indicator.completed {
    color: white;
    border-color: var(--accent-cyan);
    background: var(--accent-cyan);
}

.sim-step-pane {
    display: none;
    animation: fadeIn var(--transition-smooth) forwards;
}
.sim-step-pane.active {
    display: block;
}

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

.pane-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.pane-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    cursor: pointer;
}
.option-card input[type="radio"] {
    display: none;
}

.option-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-smooth);
    text-align: center;
}
.option-card:hover .option-content {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-4px);
}

.option-icon-custom {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--accent-pink);
    background: var(--accent-pink-glow);
    box-shadow: var(--glow-shadow-pink);
}
.option-card input[type="radio"]:checked + .option-content .option-icon-custom {
    color: var(--accent-pink);
    transform: scale(1.1);
}

.option-content span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Custom Slider */
.slider-container {
    max-width: 500px;
    margin: 40px auto;
}

.slider-value-display {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.premium-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--border-radius-full);
    background: var(--bg-secondary);
    outline: none;
    margin-bottom: 15px;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-full);
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-cyan-glow);
    transition: transform var(--transition-fast);
}
.premium-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Forms step 3 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.premium-select {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.premium-select:focus {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-shadow-pink);
}

.pane-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Step 4: Result representation */
.result-celebration {
    text-align: center;
    padding: 20px 0;
}

.celebration-icon {
    font-size: 3.5rem;
    color: var(--accent-pink);
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

.estimated-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--accent-cyan);
    padding: 20px 40px;
    border-radius: var(--border-radius-lg);
    margin: 30px 0;
    box-shadow: var(--glow-shadow-cyan);
}

.estimated-price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.estimated-price-box .price-range {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.result-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.result-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

/* ==========================================================================
   GALERIA DE MÍDIAS (PORTFÓLIO / INSTAGRAM GRID)
   ========================================================================== */
.transformation-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.85fr;
    gap: 36px;
    align-items: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    margin-bottom: 56px;
    overflow: hidden;
}

.comparison-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.comparison-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after-wrap {
    position: absolute;
    inset: 0;
    width: var(--position);
    overflow: hidden;
    border-right: 2px solid white;
}

.comparison-after {
    width: 200%;
    max-width: none;
}

.comparison-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.comparison-label {
    position: absolute;
    top: 18px;
    z-index: 3;
    background: rgba(8, 8, 10, 0.72);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-full);
    padding: 7px 14px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.before-label {
    left: 18px;
}

.after-label {
    right: 18px;
}

.transformation-copy h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.transformation-copy p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}
.filter-btn.active {
    background: var(--accent-pink);
    color: white;
    border-color: var(--accent-pink);
    box-shadow: var(--glow-shadow-pink);
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.gallery-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 22px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) rgba(255, 255, 255, 0.08);
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-full);
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    border-radius: var(--border-radius-full);
}

.gallery-nav {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--glass-border);
    background: rgba(18, 18, 23, 0.88);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-fast);
}

.gallery-nav:hover {
    border-color: var(--accent-pink);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    flex: 0 0 clamp(240px, 24vw, 330px);
    scroll-snap-align: start;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    animation: scaleIn var(--transition-smooth) forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 10%, rgba(8, 8, 10, 0.4) 60%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.instagram-tag {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.gallery-item-overlay h4 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 6px;
}

.gallery-item-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.like-counter {
    font-size: 0.8rem;
    color: var(--accent-pink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   DEPOIMENTOS DE CLIENTES
   ========================================================================== */
.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-cyan) rgba(255, 255, 255, 0.08);
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-full);
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    border-radius: var(--border-radius-full);
}

.testimonial-nav {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--glass-border);
    background: rgba(18, 18, 23, 0.88);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-fast);
}

.testimonial-nav:hover {
    border-color: var(--accent-pink);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.testimonial-card {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    position: relative;
    flex: 0 0 clamp(320px, 38vw, 520px);
    scroll-snap-align: start;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 60px;
    height: 4px;
    border-radius: var(--border-radius-full);
}
.testimonial-card:nth-child(odd)::before {
    background: var(--accent-pink);
}
.testimonial-card:nth-child(even)::before {
    background: var(--accent-cyan);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #ffd700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    font-size: 2.2rem;
    color: var(--text-muted);
}

.user-name {
    font-size: 1rem;
    color: white;
}

.user-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   LOCALIZACAO E VISITA
   ========================================================================== */
.location-section {
    background: linear-gradient(180deg, #09090b 0%, var(--bg-secondary) 100%);
}

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

.location-info .section-subtitle {
    margin-left: 0;
    text-align: left;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 36px 0;
}

.location-detail-card {
    display: flex;
    gap: 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 22px;
    transition: all var(--transition-smooth);
}

.location-detail-card:hover {
    border-color: rgba(0, 168, 198, 0.3);
    transform: translateX(6px);
    box-shadow: var(--glow-shadow-cyan);
}

.location-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius-md);
    background: rgba(0, 168, 198, 0.08);
    border: 1px solid rgba(0, 168, 198, 0.18);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.location-detail-card h3 {
    font-size: 1.12rem;
    margin-bottom: 6px;
}

.location-detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.location-detail-card a {
    color: var(--accent-cyan);
    font-weight: 700;
}

.location-detail-card a:hover {
    color: var(--accent-pink);
}

.location-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.location-visual {
    min-height: 560px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.satellite-map {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
    display: block;
    filter: saturate(1.08) contrast(1.02);
}

.map-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(230, 30, 114, 0.16), transparent 36%),
        linear-gradient(35deg, transparent 45%, rgba(0, 168, 198, 0.16)),
        var(--bg-tertiary);
}

.map-card::before,
.map-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.42;
}

.map-card::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
}

.map-card::after {
    background:
        linear-gradient(72deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 42% 44%, transparent 44%),
        linear-gradient(148deg, transparent 0 50%, rgba(255, 255, 255, 0.1) 50% 52%, transparent 52%);
}

.map-lines {
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(0, 168, 198, 0.25);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.map-pin-wrapper {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.map-pulse {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: var(--border-radius-full);
    background: rgba(230, 30, 114, 0.18);
    animation: pulse 2s infinite;
}

.map-pin {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.map-tooltip {
    margin-top: 18px;
    background: rgba(8, 8, 10, 0.82);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 14px 18px;
    text-align: center;
    backdrop-filter: blur(12px);
}

.map-tooltip strong,
.map-tooltip span {
    display: block;
}

.map-tooltip span {
    color: var(--text-secondary);
    font-size: 0.86rem;
    margin-top: 3px;
}

/* ==========================================================================
   PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

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

.faq-intro .section-subtitle {
    margin-bottom: 30px;
    text-align: left;
}

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

.accordion-item {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 28px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: transform var(--transition-smooth);
}

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

.accordion-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-bottom: 22px;
}

/* Open Accordion States */
.accordion-item.active {
    border-color: rgba(230, 30, 114, 0.3);
    background: var(--bg-tertiary);
    box-shadow: var(--glow-shadow-pink);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-pink);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   CTA SECTION & RODAPÉ
   ========================================================================== */
.cta-container {
    background: radial-gradient(circle at center, rgba(230, 30, 114, 0.15) 0%, rgba(0, 168, 198, 0.05) 70%, transparent 100%), var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer styling */
.main-footer {
    background-color: #040406;
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}
.social-link-btn:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--accent-pink);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    align-items: center;
}

.footer-contact-info i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: var(--text-secondary);
}

.footer-contact-info a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   LIGHTBOX MODAL FOR GALLERY
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(8, 8, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    animation: zoom 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
    text-align: center;
    color: var(--text-secondary);
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Up to 1024px: Tablets & Laptops */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .trust-tag {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .benefits-visual {
        order: 1;
    }
    .transformation-feature {
        grid-template-columns: 1fr;
    }
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .location-container {
        grid-template-columns: 1fr;
        gap: 46px;
    }
    .location-info,
    .location-info .section-subtitle {
        text-align: center;
    }
    .location-info .section-subtitle {
        margin-left: auto;
    }
    .location-actions {
        justify-content: center;
    }
    .location-visual,
    .map-card,
    .satellite-map {
        min-height: 360px;
    }
    .faq-intro {
        position: static;
        text-align: center;
    }
    .faq-intro .section-subtitle {
        text-align: center;
    }
    .faq-intro .btn {
        display: inline-flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Up to 768px: Mobile Navigation Toggle */
@media screen and (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(8, 8, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 50px 24px;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-top: 1px solid var(--glass-border);
    }
    .navbar.active {
        left: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .nav-link {
        font-size: 1.2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-title-line {
        white-space: normal;
    }
    .section-title {
        font-size: 2rem;
    }
    .criteria-tabs {
        align-items: stretch;
        flex-direction: column;
    }
    .criteria-tab {
        width: 100%;
    }
    .criteria-card {
        padding: 26px;
    }
    .location-detail-card {
        text-align: left;
    }
    .location-actions .btn {
        width: 100%;
    }
    .transformation-feature {
        padding: 20px;
    }
    .transformation-copy h3 {
        font-size: 1.5rem;
    }
    .cta-title {
        font-size: 2rem;
    }
    .simulator-card {
        padding: 30px 20px;
    }
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .slider-value-display {
        font-size: 2.2rem;
    }
    .estimated-price-box .price-range {
        font-size: 2.5rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Up to 480px: Small Screens */
@media screen and (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .options-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}
