/* Futuristic Design System */
:root {
    /* Colors */
    --primary-red: #8B1538;
    --primary-red-light: #A91B47;
    --primary-red-dark: #6B1028;
    --primary-green: #22C55E;
    --primary-green-light: #34D572;
    --primary-green-dark: #16A34A;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
    --gradient-secondary: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --gradient-dark: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(139, 21, 56, 0.3);
    --shadow-glow-green: 0 0 20px rgba(34, 197, 94, 0.3);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-900);
    background: linear-gradient(135deg, 
        rgba(139, 21, 56, 0.05) 0%, 
        rgba(34, 197, 94, 0.05) 100%),
        url('italy-map-clean.png');
    background-size: 500px auto;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
    pointer-events: none;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 21, 56, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 21, 56, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 80%; left: 40%; animation-delay: 2s; }
.particle:nth-child(4) { top: 40%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.05), transparent);
    animation: wave-move 10s linear infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 2s; opacity: 0.7; }
.wave-3 { animation-delay: 4s; opacity: 0.5; }

@keyframes wave-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

/* Header */
.header-futuristic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-futuristic {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    position: relative;
}

.logo-hexagon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.logo-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.logo-hexagon:hover::before {
    left: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.brand-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
}

.nav-menu-futuristic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-normal);
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 1;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1rem;
}

.nav-label {
    font-size: 0.875rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login-futuristic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-red);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-login-futuristic:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle-futuristic {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-futuristic span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-futuristic {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0 2rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 21, 56, 0.1), transparent);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge i {
    color: var(--primary-red);
    font-size: 1.125rem;
}

.hero-badge span {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--gray-900);
}

.highlight-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    font-family: var(--font-mono);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

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

.btn-primary-futuristic,
.btn-secondary-futuristic {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 1rem;
}

.btn-primary-futuristic {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-secondary-futuristic {
    background: var(--gradient-glass);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.btn-secondary-futuristic:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-green);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary-futuristic:hover .btn-glow,
.btn-secondary-futuristic:hover .btn-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-hologram {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hologram-base {
    width: 300px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(139, 21, 56, 0.3), transparent);
    border-radius: 50%;
    margin-bottom: 2rem;
    animation: hologram-pulse 2s ease-in-out infinite;
}

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

.phone-container-futuristic {
    position: relative;
    z-index: 2;
}

.phone-image {
    width: 100%;
    max-width: 455px; /* Aumentado de 350px para 455px (30% maior) */
    height: auto;
    transition: var(--transition-normal);
}

.phone-image:hover {
    transform: translateY(-8px) scale(1.02);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: phone-glow 3s ease-in-out infinite;
}

@keyframes phone-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.25rem;
    animation: float-around 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.float-element:nth-child(1) {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    left: -10%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float-around {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Containers */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-badge-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
}

.section-title-futuristic {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Passport Section */
.passport-futuristic {
    padding: var(--section-padding);
    background: var(--gray-50);
    position: relative;
}

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

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-normal);
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

.passport-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.passport-display {
    position: relative;
}

.passport-container {
    position: relative;
    z-index: 2;
}

.passport-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    transition: var(--transition-normal);
    margin: 0 auto;
    display: block;
}

.passport-image:hover {
    transform: translateY(-8px) scale(1.15); /* Zoom de 115% (15% a mais) */
    z-index: 10; /* Garantir que fique por cima */
}

.passport-hologram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.1), transparent);
    border-radius: 50%;
    z-index: 1;
    animation: passport-glow 4s ease-in-out infinite;
}

@keyframes passport-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

.passport-data {
    position: absolute;
    top: -2rem;
    right: -2rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem;
    backdrop-filter: blur(20px);
    min-width: 200px;
}

.data-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
}

.data-line:last-child {
    margin-bottom: 0;
}

.data-label {
    color: var(--gray-600);
    font-weight: 500;
}

.data-value {
    color: var(--primary-red);
    font-weight: 700;
}

/* Continue with more sections... */

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .passport-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title-futuristic {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu-futuristic {
        display: none;
    }
    
    .nav-toggle-futuristic {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title-futuristic {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title-futuristic {
        font-size: 1.75rem;
    }
    
    .hero-container,
    .section-container {
        padding: 0 1rem;
    }
}


/* APP Demo Section */
.app-demo-futuristic {
    padding: 0.5rem 0 6rem 0;
    background: var(--white);
}

.demo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.demo-content {
    display: grid;
    gap: 4rem;
}

.demo-screens {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.screen-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
    max-width: 300px;
}

.screen-card.featured {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.screen-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.screen-card.featured:hover {
    transform: scale(1.1) translateY(-8px);
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
}

.screen-dots span:first-child {
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:last-child {
    background: #28ca42;
}

.screen-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    font-family: var(--font-mono);
}

.screen-body {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.screen-image {
    width: 100%;
    height: auto;
    display: block;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Process Section */
.process-futuristic {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-green));
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(139, 21, 56, 0.2);
    border-radius: 50%;
    animation: step-pulse 2s ease-in-out infinite;
}

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

.step-card {
    flex: 1;
    max-width: 500px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

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

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: var(--font-mono);
}

/* AGIS Section */
.agis-futuristic {
    padding: var(--section-padding);
    background: var(--white);
}

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

.agis-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agis-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-shield {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.logo-shield::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(139, 21, 56, 0.2);
    border-radius: 50%;
    animation: shield-rotate 10s linear infinite;
}

@keyframes shield-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-mono);
    letter-spacing: 2px;
}

.agis-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    min-width: 100px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.agis-features {
    display: grid;
    gap: 1rem;
}

.agis-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
}

.agis-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.agis-feature i {
    color: var(--primary-green);
    font-size: 1.125rem;
    width: 20px;
}

.agis-feature span {
    color: var(--gray-700);
    font-weight: 500;
}

/* Pricing Section */
.pricing-futuristic {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-card-futuristic {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    animation: pricing-glow 3s ease-in-out infinite;
}

@keyframes pricing-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pricing-content {
    padding: 3rem 2rem;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-900);
    font-family: var(--font-mono);
}

.price-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 2rem;
}

.pricing-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gradient-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.pricing-feature:hover {
    transform: translateX(4px);
}

.pricing-feature i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 16px;
}

.pricing-feature span {
    color: var(--gray-700);
    font-weight: 500;
}

.btn-pricing-futuristic {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.btn-pricing-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* CTA Section */
.cta-futuristic {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="90" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.5;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #8B1538 0%, #A91B47 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(139, 21, 56, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    text-decoration: none;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(139, 21, 56, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 4px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #A91B47 0%, #8B1538 100%);
}

.btn-cta-secondary {
    background: #25D366;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(37, 211, 102, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 4px 16px rgba(0, 0, 0, 0.2);
    background: #1ea952;
}

/* Footer Clean */
.footer-clean {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #333333;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.footer-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.02) 0%, transparent 50%, rgba(0,0,0,0.01) 100%);
    pointer-events: none;
}

.footer-content-clean {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand-clean {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-description-clean {
    color: #666666;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 500px;
}

.footer-contact-clean {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: #A41A45;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #A41A45;
    text-decoration: underline;
}

.footer-bottom-clean {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    position: relative;
    z-index: 2;
}

.footer-bottom-clean p {
    color: #666666;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-content-clean {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-contact-clean {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-clean {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content-clean {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-section a:hover {
    color: var(--primary-red);
    transform: translateX(4px);
}

.social-links-futuristic {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links-futuristic a {
    width: 45px;
    height: 45px;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.25rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-links-futuristic a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .demo-screens {
        flex-direction: column;
        align-items: center;
    }
    
    .screen-card.featured {
        transform: none;
        order: -1;
    }
    
    .agis-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .agis-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .agis-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-content {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
}


/* Services Page Specific Styles */
.services-hero-futuristic {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: var(--gray-50);
    position: relative;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.services-hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.services-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.services-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    min-width: 120px;
}

.services-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-mono);
    line-height: 1;
}

.services-stat .stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Discount Banner */
.discount-banner-futuristic {
    padding: 2rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.discount-banner-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: discount-shine 3s ease-in-out infinite;
}

@keyframes discount-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.discount-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.discount-text {
    flex: 1;
}

.discount-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.discount-text p {
    opacity: 0.9;
    font-size: 1rem;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 900;
    font-family: var(--font-mono);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Services Grid */
.services-grid-futuristic {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-futuristic {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-card-futuristic.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.service-card-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

.service-card-futuristic:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-card-futuristic.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(139, 21, 56, 0.2);
    border-radius: 50%;
    animation: service-pulse 2s ease-in-out infinite;
}

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

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--gradient-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.service-feature:hover {
    transform: translateX(4px);
}

.service-feature i {
    color: var(--primary-green);
    font-size: 0.875rem;
    width: 16px;
}

.service-feature span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.875rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gradient-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.price-from {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-mono);
    line-height: 1;
    margin: 0.25rem 0;
}

.price-unit {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.btn-service-futuristic {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(139, 21, 56, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-red);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-service-futuristic.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-service-futuristic:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-service-futuristic.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Process Flow */
.process-flow-futuristic {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.process-flow-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.flow-step .step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.flow-step .step-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-mono);
}

.flow-step .step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.flow-step .step-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.flow-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    position: relative;
    margin: 0 1rem;
}

.flow-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-red);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Services CTA */
.services-cta-futuristic {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Mobile Responsive for Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .service-card-futuristic.featured {
        transform: none;
        order: -1;
    }
    
    .process-flow-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .flow-connector {
        width: 2px;
        height: 60px;
        transform: rotate(90deg);
    }
    
    .flow-connector::after {
        right: 50%;
        top: -8px;
        transform: translateX(50%) rotate(90deg);
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .discount-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .service-card-futuristic {
        padding: 1.5rem;
    }
    
    .services-cta-title {
        font-size: 2rem;
    }
}


/* Login Button Styles */
.login-btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
    min-width: auto !important;
    text-decoration: none !important;
    display: inline-flex !important;
}

.login-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn .btn-icon {
    font-size: 0.75rem;
}

/* Mobile responsive for login button */
@media (max-width: 768px) {
    .login-btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.8rem !important;
    }
    
    .login-btn .btn-text {
        gap: 0.375rem;
    }
}


/* Logo Image Styles */
.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.3);
    transition: all 0.3s ease;
}

.logo-futuristic:hover .logo-image {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(139, 21, 56, 0.5);
}

/* Update logo-futuristic to be clickable */
.logo-futuristic {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-futuristic:hover {
    transform: translateY(-2px);
}

.logo-futuristic:hover .brand-name {
    color: var(--primary-color);
}

/* Mobile responsive for logo image */
@media (max-width: 768px) {
    .logo-image {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 32px;
        height: 32px;
    }
}


/* Globe Animation */
.globe-icon {
    display: inline-block;
    font-size: 1.2em;
    animation: rotateGlobe 4s linear infinite;
    margin: 0 0.25rem;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
}

@keyframes rotateGlobe {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Enhanced hero subtitle styling */
.hero-subtitle {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile responsive for globe */
@media (max-width: 768px) {
    .globe-icon {
        font-size: 1.1em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .globe-icon {
        font-size: 1em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}


/* Primary Button - Exact Same Style as Original Iniciar Processo */
.btn-primary {
    background: linear-gradient(135deg, #8B1538 0%, #A91B47 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 32px rgba(139, 21, 56, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 2px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    text-decoration: none;
}

/* Shimmer effect - same as original */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Hover effects - same as original */
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(139, 21, 56, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 4px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #A91B47 0%, #8B1538 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Ripple effect - same as original */
.btn-primary .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    z-index: 2;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Glow animation - same as original */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #8B1538, 
        #A91B47, 
        #8B1538);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 0.7;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(139, 21, 56, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(139, 21, 56, 0.8);
    }
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
}

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

.btn-whatsapp .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Hero Actions Spacing */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        max-width: 280px;
    }
}


/* YouTube Video Styles */
.demo-video {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.video-container {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.video-embed:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .video-embed {
        border-radius: var(--radius-lg);
    }
    
    .youtube-iframe {
        border-radius: var(--radius-lg);
    }
}


/* Passport Info Centered */
.passport-info-centered {
    text-align: center;
}

.passport-info-centered .section-badge-futuristic {
    margin: 0 auto 1.5rem auto;
}

.passport-info-centered .section-title-futuristic {
    text-align: center;
}

.passport-info-centered .section-description {
    text-align: center;
}


/* Passport Content Reversed */
.passport-content-reversed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
}

.passport-content-reversed .passport-info {
    text-align: left;
    position: relative;
}

.passport-content-reversed .section-badge-futuristic {
    margin: 0 0 1.5rem 0;
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: 10;
}

.passport-content-reversed .section-title-futuristic {
    text-align: left;
    margin-top: 2rem;
}

.passport-content-reversed .section-description {
    text-align: left;
}

.passport-content-reversed .passport-visual {
    position: relative;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .passport-content-reversed {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .passport-content-reversed .passport-info {
        text-align: center;
        position: relative;
    }
    
    .passport-content-reversed .section-badge-futuristic {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 1.5rem auto;
    }
    
    .passport-content-reversed .section-title-futuristic {
        text-align: center;
        margin-top: 0;
    }
    
    .passport-content-reversed .section-description {
        text-align: center;
    }
    
    .passport-content-reversed .passport-visual {
        margin-top: 0;
    }
}


/* CTA Clean Section */
.cta-clean {
    background: var(--white);
    padding: var(--section-padding);
}

.cta-content-clean {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-clean .section-badge-futuristic {
    margin: 0 auto 1.5rem auto;
}

.cta-content-clean .section-title-futuristic {
    margin-bottom: 1.5rem;
}

.cta-content-clean .section-description {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.cta-content-clean .hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-content-clean .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* Question Mark Color */
.question-mark {
    color: #A01942;
}


/* Demo Video Section Layout */
.demo-video-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.demo-cta-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-cta-side .btn-primary {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .demo-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .demo-cta-side {
        justify-content: center;
    }
}

/* Demo CTA Button */
.demo-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.demo-cta .btn-primary {
    margin: 0 auto;
}


/* Passport Benefits Styles */
.passport-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-normal);
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Passport Badge Positioning */
.passport-badge {
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: 10;
}

@media (max-width: 768px) {
    .passport-benefits {
        grid-template-columns: 1fr;
    }
    
    .passport-badge {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 1.5rem auto;
    }
}


/* Updated Footer Styles */
.footer-clean {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid #e9ecef;
}

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

.footer-info {
    max-width: 400px;
}

.footer-logo h3 {
    color: #333333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-cnpj {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-cnpj i {
    color: #A41A45;
    font-size: 1rem;
}

.footer-pages h4,
.footer-contact h4 {
    color: #333333;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #A41A45;
    transform: translateX(4px);
}

.footer-links a i {
    color: #A41A45;
    width: 16px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-item i {
    color: #A41A45;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #A41A45;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    color: #666666;
    font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        grid-column: auto;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}


/* Passport Badge Centered */
.passport-badge-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem auto;
    width: fit-content;
}

/* Passport Content Inverted */
.passport-content-inverted {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.passport-content-inverted .passport-visual {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.passport-content-inverted .passport-info {
    order: 2;
    text-align: left;
}

.passport-content-inverted .section-title-futuristic {
    text-align: left;
    margin-bottom: 1.5rem;
}

.passport-content-inverted .section-description {
    text-align: left;
    margin-bottom: 2rem;
}

/* Responsive adjustments for inverted layout */
@media (max-width: 1024px) {
    .passport-content-inverted {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .passport-content-inverted .passport-visual {
        order: 1;
    }
    
    .passport-content-inverted .passport-info {
        order: 2;
        text-align: center;
    }
    
    .passport-content-inverted .section-title-futuristic {
        text-align: center;
    }
    
    .passport-content-inverted .section-description {
        text-align: center;
    }
    
    .passport-badge-centered {
        margin-bottom: 2rem;
    }
}


/* CTA Badge Centered */
.cta-badge-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    width: fit-content;
}


/* Services Hero Compact */
.services-hero-compact {
    min-height: 40vh;
    padding: 4rem 0 2rem;
}

.services-hero-compact .services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-compact .services-hero-title {
    margin-bottom: 0;
}


/* CTA Title Centered */
.cta-title-centered {
    text-align: center;
    margin: 0 auto 3rem auto;
    max-width: 800px;
}


/* Services Hero Title Formatted */
.services-hero-title-formatted {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.title-line-left {
    text-align: left;
    display: block;
}

.title-line-center {
    text-align: center;
    display: block;
}

/* Responsive adjustments for formatted title */
@media (max-width: 768px) {
    .services-hero-title-formatted {
        text-align: center;
    }
    
    .title-line-left {
        text-align: center;
    }
}


/* Custom Green Highlight */
.highlight-custom-green {
    color: #a01942;
    font-weight: 700;
}


/* Title Line Small */
.title-line-small {
    font-size: 0.5em;
    line-height: 1.2;
}

/* Responsive adjustments for small title line */
@media (max-width: 768px) {
    .title-line-small {
        font-size: 0.45em;
    }
}

@media (max-width: 480px) {
    .title-line-small {
        font-size: 0.4em;
    }
}


/* Hero Actions Centered */
.hero-actions-centered {
    justify-content: center;
    text-align: center;
}


/* Hero Description Centered */
.hero-description-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


/* Title Line Centered */
.title-line-centered {
    text-align: center;
}


/* Mobile Menu Active States */
@media (max-width: 768px) {
    /* Login button 30% smaller on mobile */
    .btn-cta-primary.login-btn {
        transform: scale(0.7);
        transform-origin: center right;
    }
    
    .nav-menu-futuristic.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0;
        z-index: 1000;
        animation: slideDown 0.2s ease-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu-futuristic.active .nav-item {
        margin: 0;
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: transparent;
        border-radius: 0;
        transition: background-color 0.2s ease;
        color: #333;
        font-size: 0.9rem;
    }
    
    .nav-menu-futuristic.active .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu-futuristic.active .nav-item:hover {
        background: rgba(160, 25, 66, 0.05);
        transform: none;
    }
    
    .nav-menu-futuristic.active .nav-item.active {
        background: rgba(160, 25, 66, 0.1);
        color: #a01942;
    }
    
    /* Hide icons in mobile menu */
    .nav-menu-futuristic.active .nav-icon {
        display: none;
    }
    
    .nav-toggle-futuristic.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle-futuristic.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle-futuristic.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Services Page Title Adjustments */
.services-hero-title-formatted .title-line-left,
.services-hero-title-formatted .title-line-center:first-of-type {
    color: #111827 !important;
    font-size: 0.7em !important;
    font-weight: 400 !important;
    text-align: center;
}

.services-hero-title-formatted .title-line-center:last-of-type {
    /* "Cidadania Italiana" em negrito */
    text-align: center;
    font-weight: 700 !important;
}

/* Específico para o "para sua" */
.services-hero-title-formatted .title-line-center {
    color: #111827 !important;
    font-size: 0.7em !important;
    font-weight: 400 !important;
}

/* Específico para "Especializados" - mesma cor que "Serviços" */
.services-hero-title-formatted .highlight-gradient {
    color: #111827 !important;
    font-weight: 400 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

/* "Cidadania Italiana" mantém o gradiente mas fica em negrito */
.services-hero-title-formatted .title-line-center:last-of-type .highlight-gradient {
    color: transparent !important;
    background: linear-gradient(135deg, #8B1538, #a41a45) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
}


/* Estilos para botões Saiba Mais e elementos clicáveis */
.clickable-step {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.saiba-mais-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin: 20px auto 0 auto;
    display: block;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    font-family: var(--font-primary);
    pointer-events: none; /* Remove eventos de clique do botão */
}

.clickable-step:hover .saiba-mais-btn {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}




.process-step .btn-primary {
    padding: 14.4px 28.8px; /* 20% menor que 18px 36px */
    font-size: 12.8px; /* 20% menor que 16px */
    min-width: 160px; /* 20% menor que 200px */
}



.process-step .btn-primary {
    margin: 0 auto;
}



/* Estilos para o novo Pop-up */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
    backdrop-filter: blur(5px); /* Blur effect */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #8B1538 0%, #A91B47 100%);
    color: white;
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: -20px -20px 20px -20px; /* Adjust to cover padding */
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-popup {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.popup-body {
    padding: 10px 0;
    color: #333;
}

.popup-body ol,
.popup-body ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.popup-body ol li,
.popup-body ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.popup-body h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #8B1538;
}

.popup-app-info {
    background-color: #f2fcf2; /* Light green background */
    border: 1px solid #4CAF50; /* Green border */
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.popup-app-info p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.popup-notes {
    font-size: 0.85rem;
    color: #666;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    background-color: rgba(139, 21, 56, 0.05);
    border-left: 5px solid var(--primary-red);
    padding-left: 20px; /* Add padding to the left for the border */
    border-radius: 0 8px 8px 0; /* Adjust border-radius for the left border */
}

.popup-notes p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 15px;
    }
    
    .popup-header h2 {
        font-size: 1.2rem;
    }
    
    .close-popup {
        font-size: 1.8rem;
    }
    
    .popup-body ol,
    .popup-body ul {
        padding-left: 20px;
    }
    
    .popup-app-info {
        padding: 10px;
    }
}




.popup-app-info p {
    font-size: 1.1rem;
    white-space: normal;
    word-break: break-word;
}



.step-actions {
    text-align: center;
    margin-top: 20px;
}



.popup-header h2 {
    flex-grow: 1;
    text-align: center;
}



/* ===== CARROSSEL DE POP-UPS ===== */

/* Container do carrossel */
.popup-carousel {
    position: relative;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
}

/* Botões de navegação nas laterais da tela */
.carousel-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(155, 24, 64, 0.9);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(155, 24, 64, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mostrar botões apenas quando carrossel está ativo */
.popup-overlay.active ~ .carousel-nav,
.popup-overlay.active .carousel-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.carousel-nav:hover {
    background: rgba(155, 24, 64, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(155, 24, 64, 0.6);
}

.carousel-nav-prev {
    left: 30px;
}

.carousel-nav-next {
    right: 30px;
}

/* Animação de pulse para chamar atenção */
.carousel-nav::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(155, 24, 64, 0.3);
    animation: navPulse 2s infinite;
    z-index: -1;
}

@keyframes navPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Indicadores no header */
.carousel-indicators {
    display: flex;
    gap: 15px;
    align-items: center;
}

.indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #9B1840;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(155, 24, 64, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: linear-gradient(135deg, #9B1840, #C41E3A);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(155, 24, 64, 0.4);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.9);
    border-color: #9B1840;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(155, 24, 64, 0.2);
}

/* ===== NAVEGAÇÃO INFERIOR DOS INDICADORES ===== */
.carousel-indicators-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(155, 24, 64, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
}

/* ===== CABEÇALHO CENTRALIZADO ===== */
.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 30px;
    background: linear-gradient(135deg, #9B1840, #C41E3A);
    color: white;
    border-radius: 15px 15px 0 0;
    backdrop-filter: blur(10px);
}

.popup-title {
    flex: 1;
    text-align: center;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container dos slides */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%; /* 3 slides */
}

.carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide .popup-body {
    padding: 20px;
    max-height: none;
    overflow-y: visible;
    font-size: 14px;
    line-height: 1.4;
}

/* Ajustar container do carrossel para melhor aproveitamento */
.popup-carousel {
    position: relative;
    max-width: 1000px;
    width: 95%;
    max-height: 95vh;
    overflow: visible;
}

/* Otimizar espaçamentos internos */
.carousel-slide .popup-body h2 {
    margin-bottom: 15px;
    font-size: 20px;
}

.carousel-slide .popup-body h3 {
    margin: 15px 0 10px 0;
    font-size: 16px;
}

.carousel-slide .popup-body ol,
.carousel-slide .popup-body ul {
    margin: 10px 0;
    padding-left: 20px;
}

.carousel-slide .popup-body li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.carousel-slide .popup-body p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Otimizar seção de notas */
.popup-notes {
    background: rgba(155, 24, 64, 0.05);
    border-left: 3px solid #9B1840;
    padding: 12px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.popup-notes p {
    margin: 8px 0;
    font-size: 12px;
    line-height: 1.3;
    color: #666;
}

/* Otimizar seção de info do app */
.popup-app-info {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
}

.popup-app-info p {
    margin: 0;
    font-size: 14px;
}

.slide-title {
    color: #9B1840;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #9B1840, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hint de swipe para mobile */
.mobile-swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(155, 24, 64, 0.1);
    border-radius: 25px;
    margin: 15px;
    color: #9B1840;
    font-size: 14px;
    font-weight: 500;
}

.mobile-swipe-hint i {
    font-size: 16px;
    animation: swipeHint 2s infinite ease-in-out;
}

.mobile-swipe-hint i:first-child {
    animation-delay: 0s;
}

.mobile-swipe-hint i:last-child {
    animation-delay: 1s;
}

@keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .popup-carousel {
        width: 98%;
        max-height: 95vh;
    }
    
    /* Esconder botões de navegação no mobile */
    .carousel-nav {
        display: none;
    }
    
    /* Mostrar hint de swipe no mobile */
    .mobile-swipe-hint {
        display: flex;
    }
    
    /* Ajustar indicadores para mobile */
    .carousel-indicators {
        gap: 10px;
    }
    
    .indicator {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .carousel-slide .popup-body {
        padding: 15px;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .popup-carousel {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .carousel-slide .popup-body {
        max-height: 75vh;
        padding: 10px;
    }
    
    .slide-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Animações de entrada */
.popup-carousel.entering {
    animation: carouselEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes carouselEnter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Melhorias na barra de rolagem para o carrossel */
.carousel-slide .popup-body::-webkit-scrollbar {
    width: 6px;
}

.carousel-slide .popup-body::-webkit-scrollbar-track {
    background: rgba(155, 24, 64, 0.1);
    border-radius: 3px;
}

.carousel-slide .popup-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #9B1840, #C41E3A);
    border-radius: 3px;
}

.carousel-slide .popup-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C41E3A, #9B1840);
}

/* Estados de transição suave */
.carousel-slides.transitioning {
    pointer-events: none;
}

.carousel-slide.entering {
    animation: slideEnter 0.5s ease-out;
}

.carousel-slide.exiting {
    animation: slideExit 0.5s ease-out;
}

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

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


/* ===== TÍTULO DO POP-UP =====*/
.popup-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajustar layout do header para acomodar o título */
.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(155, 24, 64, 0.9), rgba(155, 24, 64, 0.7));
    backdrop-filter: blur(10px);
    position: relative;
}

/* Indicadores no cabeçalho (lado esquerdo) */
.carousel-indicators-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-indicators-header .indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-indicators-header .indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    transform: scale(1.05);
}

.carousel-indicators-header .indicator.active {
    background: white;
    border-color: white;
    color: #9B1840;
    font-weight: 700;
}

.popup-title {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Reorganizar indicadores para ficarem à esquerda */
.carousel-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
    order: 1;
}

/* Título no centro */
.popup-title {
    order: 2;
}

/* Botão de fechar à direita */
.close-popup {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10001;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .carousel-indicators {
        order: 1;
        flex: 1;
    }
    
    .close-popup {
        order: 2;
    }
    
    .popup-title {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}


/* Responsividade para mobile - popup otimizado */
@media (max-width: 768px) {
    .popup-carousel {
        max-width: 95%;
        width: 95%;
        max-height: 90vh;
        margin: 20px auto;
    }
    
    .carousel-slide .popup-body {
        padding: 15px;
        font-size: 13px;
    }
    
    .carousel-slide .popup-body h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .carousel-slide .popup-body h3 {
        font-size: 15px;
        margin: 12px 0 8px 0;
    }
    
    .carousel-slide .popup-body li,
    .carousel-slide .popup-body p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .popup-notes {
        padding: 10px;
        margin: 12px 0;
    }
    
    .popup-notes p {
        font-size: 11px;
        margin: 6px 0;
    }
    
    .popup-app-info {
        padding: 10px;
        margin: 12px 0;
    }
    
    .popup-app-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .popup-carousel {
        max-width: 98%;
        width: 98%;
        margin: 10px auto;
    }
    
    .carousel-slide .popup-body {
        padding: 12px;
        font-size: 12px;
    }
    
    .carousel-slide .popup-body h2 {
        font-size: 16px;
    }
    
    .carousel-slide .popup-body h3 {
        font-size: 14px;
    }
}


/* ===== TÍTULO DA ETAPA NO CONTEÚDO ===== */
.etapa-titulo {
    color: #9B1840;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(155, 24, 64, 0.1), rgba(196, 30, 58, 0.1));
    border-radius: 10px;
    border: 2px solid rgba(155, 24, 64, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== NÚMEROS VERMELHOS NA LISTA ===== */
.carousel-slide ol {
    counter-reset: item;
    padding-left: 0;
    list-style: none;
}

.carousel-slide ol li {
    counter-increment: item;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.carousel-slide ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #9B1840;
    font-weight: 700;
    font-size: 1.1rem;
    width: 30px;
}

/* ===== AJUSTE DE TAMANHO DO POPUP ===== */
.carousel-popup {
    max-width: 1100px;
    max-height: 98vh;
    width: 95vw;
}

.carousel-slide .popup-body {
    padding: 25px;
    max-height: none;
    overflow: visible;
}

/* Responsividade para mobile - ajuste do título da etapa */
@media (max-width: 768px) {
    .etapa-titulo {
        font-size: 1.2rem;
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .carousel-popup {
        max-height: 95vh;
        width: 98vw;
    }
    
    .carousel-slide .popup-body {
        padding: 20px;
    }
    
    .carousel-slide ol li {
        padding-left: 35px;
        margin-bottom: 10px;
    }
    
    .carousel-slide ol li::before {
        width: 25px;
        font-size: 1rem;
    }
}



/* ===== ANIMAÇÃO DA BANDEIRA DA ITÁLIA ===== */
@keyframes wave {
    0% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(10deg);
    }
}

/* Aplicar animação à bandeira */
img[alt="🇮🇹"] {
    animation: wave 1s ease-in-out infinite alternate;
    display: inline-block;
    margin-left: 5px;
}



/* ===== DEMO CTA COM IMAGENS LATERAIS ===== */
.demo-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.demo-image-left,
.demo-image-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-button-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-side-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: transform 0.4s ease-out;
    /* Transparência profissional - sem border-radius nem box-shadow */
    position: relative;
    z-index: 1;
}

.demo-side-image:hover {
    transform: scale(2.0); /* Alterado de 1.15 para 2.0 (dobro do tamanho) */
    z-index: 2;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .demo-cta-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .demo-side-image {
        max-width: 150px;
    }
    
    .demo-side-image:hover {
        transform: scale(1.12);
    }
    
    .demo-image-left,
    .demo-image-right {
        order: 2;
    }
    
    .demo-button-center {
        order: 1;
    }
}

@media (max-width: 480px) {
    .demo-side-image {
        max-width: 120px;
    }
    
    .demo-side-image:hover {
        transform: scale(2.0); /* Alterado de 1.1 para 2.0 para consistência */
    }
    
    .demo-cta-container {
        gap: 1rem;
        padding: 1rem 0;
    }
}


/* Efeito hover específico para a imagem da Carta d'Identità */
.passport-futuristic .passport-content .passport-visual img[src="carta-identita-italiana.jpg"]:hover {
    transform: translateY(-8px) scale(1.15) !important; /* Zoom de 115% (15% a mais) */
    z-index: 15 !important; /* Garantir que fique por cima de tudo */
}

.passport-futuristic .passport-content .passport-visual img[src="carta-identita-italiana.jpg"] {
    transition: var(--transition-normal) !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    display: block !important;
}


/* Botão Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c41e3a, #8b1538);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    transition: all var(--transition-normal);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.6);
    background: linear-gradient(135deg, #d4243a, #c41e3a);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/* Seletor de Idiomas */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-right: 20px;
}

.language-selector .flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.language-selector .flag:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.language-selector .flag.active {
    border-color: var(--primary-color);
    background: rgba(196, 30, 58, 0.2);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 10px;
        gap: 6px;
    }
    
    .language-selector .flag {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* Correções de Alinhamento - CTA e Footer */

/* ===== SEÇÃO CTA (COMECE AGORA) ===== */
.cta-clean {
    text-align: center !important;
    padding: 4rem 0 !important;
}

.cta-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.cta-badge-centered {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 2rem auto !important;
    width: fit-content !important;
}

.cta-title-centered {
    text-align: center !important;
    margin: 0 auto 3rem auto !important;
    max-width: 100% !important;
}

.cta-actions {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 0 auto !important;
}

/* ===== RODAPÉ (FOOTER) ===== */
.footer-clean {
    text-align: center !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 3rem !important;
    text-align: center !important;
    align-items: start !important;
    justify-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.footer-info,
.footer-pages,
.footer-contact {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.footer-info h3,
.footer-pages h4,
.footer-contact h4 {
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.footer-description {
    text-align: center !important;
    max-width: 300px !important;
    margin: 0 auto 1rem auto !important;
}

.footer-cnpj {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin: 0 auto !important;
}

.footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    color: var(--gray-600) !important;
    transition: var(--transition-normal) !important;
    padding: 0.5rem !important;
    border-radius: var(--radius-md) !important;
}

.footer-links a:hover {
    color: var(--primary-red) !important;
    background: rgba(139, 21, 56, 0.1) !important;
}

.contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

.contact-item a {
    color: var(--gray-600) !important;
    text-decoration: none !important;
    transition: var(--transition-normal) !important;
}

.contact-item a:hover {
    color: var(--primary-red) !important;
}

.footer-bottom {
    text-align: center !important;
    margin-top: 3rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid var(--gray-200) !important;
}

.footer-bottom p {
    text-align: center !important;
    color: var(--gray-500) !important;
    margin: 0 !important;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
    
    /* CTA Mobile */
    .cta-clean {
        padding: 3rem 0 !important;
    }
    
    .cta-actions {
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-whatsapp {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
        padding: 1rem !important;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-info,
    .footer-pages,
    .footer-contact {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .footer-description {
        max-width: 100% !important;
    }
    
    .footer-links {
        width: 100% !important;
    }
    
    .footer-links a {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    
    /* CTA Extra Small Mobile */
    .cta-clean {
        padding: 2rem 0 !important;
    }
    
    .cta-title-centered {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-whatsapp {
        padding: 0.875rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Footer Extra Small Mobile */
    .footer-content {
        gap: 1.5rem !important;
    }
    
    .footer-info h3,
    .footer-pages h4,
    .footer-contact h4 {
        font-size: 1.1rem !important;
    }
    
    .footer-description {
        font-size: 0.9rem !important;
    }
    
    .footer-links a {
        font-size: 0.9rem !important;
        padding: 0.4rem !important;
    }
    
    .contact-item {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
    }
}

/* Mobile Responsiveness Fix */

/* Ensure proper mobile viewport */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Mobile-first approach */
@media screen and (max-width: 768px) {
    
    /* Container fixes */
    .hero-container,
    .section-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Header mobile fixes */
    .header-futuristic {
        padding: 0.5rem 0 !important;
    }
    
    .nav-container {
        padding: 0 1rem !important;
    }
    
    .nav-content {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    
    .logo-futuristic {
        font-size: 0.9rem !important;
    }
    
    .logo-image {
        width: 30px !important;
        height: 30px !important;
    }
    
    /* Mobile menu */
    .nav-menu-futuristic {
        display: none !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--white) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        padding: 1rem !important;
        flex-direction: column !important;
    }
    
    .nav-menu-futuristic.active {
        display: flex !important;
    }
    
    .nav-item {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--gray-200) !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-toggle-futuristic {
        display: flex !important;
    }
    
    /* Hero section mobile */
    .hero-futuristic {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    
    .hero-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .hero-content {
        order: 1 !important;
        max-width: 100% !important;
    }
    
    .hero-visual {
        order: 2 !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .title-line {
        display: block !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
    }
    
    /* Phone image mobile */
    .phone-container-futuristic {
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .phone-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Sections mobile */
    .section-title-futuristic {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .section-description {
        font-size: 0.95rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    /* Process timeline mobile */
    .process-timeline {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .process-step {
        width: 100% !important;
        max-width: none !important;
    }
    
    .step-card {
        padding: 1.5rem !important;
        text-align: center !important;
    }
    
    .step-number {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Passport sections mobile */
    .passport-content {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .passport-content-inverted {
        flex-direction: column !important;
    }
    
    .passport-visual {
        order: 1 !important;
        max-width: 100% !important;
    }
    
    .passport-info {
        order: 2 !important;
        max-width: 100% !important;
    }
    
    .passport-image {
        max-width: 250px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .passport-benefits {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .benefit-item {
        text-align: left !important;
        padding: 1rem !important;
    }
    
    /* Demo section mobile */
    .demo-content {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .demo-video {
        width: 100% !important;
    }
    
    .video-container {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .demo-cta-container {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .demo-side-image {
        max-width: 120px !important;
        height: auto !important;
    }
    
    .demo-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    /* Scroll to top button mobile */
    .scroll-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 1rem !important;
    }
    
    /* Badge mobile */
    .section-badge-futuristic {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    /* Floating elements mobile */
    .floating-elements {
        display: none !important;
    }
    
    /* Background fixes */
    .animated-bg {
        display: none !important;
    }
    
    body {
        background-attachment: scroll !important;
        background-size: cover !important;
    }
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .section-title-futuristic {
        font-size: 1.5rem !important;
    }
    
    .hero-container,
    .section-container {
        padding: 0 0.75rem !important;
    }
    
    .step-card {
        padding: 1rem !important;
    }
    
    .passport-image {
        max-width: 200px !important;
    }
    
    .demo-side-image {
        max-width: 100px !important;
    }
    
    .btn-primary,
    .btn-whatsapp {
        padding: 0.875rem !important;
        font-size: 0.95rem !important;
    }
}

/* Landscape mobile orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
    
    .hero-futuristic {
        padding: 1rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-actions {
        flex-direction: row !important;
        gap: 1rem !important;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: auto !important;
        padding: 0.75rem 1.5rem !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    
    .btn-primary,
    .btn-whatsapp,
    .nav-item {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    .step-card {
        cursor: default !important;
    }
    
    .passport-image:hover,
    .demo-side-image:hover {
        transform: none !important;
    }
}

/* Correções Mobile Específicas - Hero e Demo */

/* ===== SEÇÃO HERO MOBILE ===== */
@media screen and (max-width: 768px) {
    
    /* Hero container - imagem primeiro */
    .hero-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    /* Imagem primeiro (order: 1) */
    .hero-visual {
        order: 1 !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    /* Conteúdo depois (order: 2) */
    .hero-content {
        order: 2 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    /* Centralizar botões da hero */
    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    /* Ajustar imagem do phone */
    .phone-container-futuristic {
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .phone-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

/* ===== SEÇÃO DEMO - ESCONDER IMAGENS NO MOBILE ===== */
@media screen and (max-width: 768px) {
    
    /* Esconder imagens laterais da demo apenas no mobile */
    .demo-cta-container .demo-side-image,
    .demo-image-left,
    .demo-image-right {
        display: none !important;
    }
    
    /* Ajustar container da demo sem as imagens */
    .demo-cta-container {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 2rem 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Centralizar botão da demo */
    .demo-cta-container .btn-primary {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }
}

/* ===== MOBILE EXTRA PEQUENO ===== */
@media screen and (max-width: 480px) {
    
    /* Hero actions em telas muito pequenas */
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        max-width: 260px !important;
        padding: 0.875rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Phone image menor em telas pequenas */
    .phone-container-futuristic {
        max-width: 250px !important;
    }
}

/* ===== ORIENTAÇÃO LANDSCAPE MOBILE ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    
    /* Em landscape, manter botões lado a lado se couber */
    .hero-actions {
        flex-direction: row !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        width: auto !important;
        min-width: 140px !important;
        max-width: 180px !important;
        padding: 0.75rem 1rem !important;
    }
}
/* Correções Finais - Pop-ups e Hero Mobile */

/* ===== REVERTER CENTRALIZAÇÃO DOS POP-UPS (WEB) ===== */

/* Pop-ups devem manter alinhamento à esquerda na versão web */
.popup-overlay,
.popup-content,
.popup-carousel,
.popup-header,
.popup-title,
.popup-body,
.carousel-slide,
.carousel-slide .popup-body {
    text-align: left !important;
}

.carousel-slide .popup-body h2,
.carousel-slide .popup-body h3,
.carousel-slide .popup-body p,
.carousel-slide .popup-body li,
.popup-notes,
.popup-notes p,
.popup-app-info,
.popup-app-info p {
    text-align: left !important;
}

.carousel-slide .popup-body ol,
.carousel-slide .popup-body ul {
    text-align: left !important;
    padding-left: 1.5rem !important;
}

.carousel-indicators-header {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* ===== AJUSTE HERO MOBILE - IMAGEM APÓS "PROCESSO JUDICIAL EXCLUSIVO" ===== */
@media screen and (max-width: 768px) {
    
    /* Hero container - layout em coluna */
    .hero-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    
    /* Badge "PROCESSO JUDICIAL EXCLUSIVO" primeiro */
    .hero-badge {
        order: 1 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Imagem depois do badge (order: 2) */
    .hero-visual {
        order: 2 !important;
        max-width: 100% !important;
        margin: 1rem 0 !important;
    }
    
    /* Título principal depois da imagem (order: 3) */
    .hero-content h1,
    .hero-title {
        order: 3 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Descrição depois do título (order: 4) */
    .hero-description {
        order: 4 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Botões por último (order: 5) */
    .hero-actions {
        order: 5 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Reorganizar todo o conteúdo hero */
    .hero-content {
        order: 2 !important;
        max-width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Ajustar imagem do phone */
    .phone-container-futuristic {
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .phone-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Botões centralizados */
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
}

/* ===== ESTRUTURA ESPECÍFICA PARA HERO MOBILE ===== */
@media screen and (max-width: 768px) {
    
    /* Garantir que a estrutura seja:
       1. Badge "PROCESSO JUDICIAL EXCLUSIVO"
       2. Imagem do APP
       3. Título "Vamos juntos preparar..."
       4. Descrição
       5. Botões
    */
    
    .hero-futuristic .section-container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Se houver badge específico, garantir que seja primeiro */
    .section-badge-futuristic {
        order: 1 !important;
        margin-bottom: 1rem !important;
        align-self: center !important;
    }
    
    /* Container hero reorganizado */
    .hero-container {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Visual (imagem) logo após badge */
    .hero-visual {
        order: 1 !important;
        margin: 1rem 0 !important;
    }
    
    /* Conteúdo textual depois */
    .hero-content {
        order: 2 !important;
        text-align: center !important;
    }
}

/* ===== MOBILE EXTRA PEQUENO ===== */
@media screen and (max-width: 480px) {
    
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        max-width: 260px !important;
        padding: 0.875rem !important;
        font-size: 0.95rem !important;
    }
    
    .phone-container-futuristic {
        max-width: 250px !important;
    }
}
/* Últimas Correções - Badge Mobile e Rodapé Web */

/* ===== OCULTAR "PROCESSO JUDICIAL EXCLUSIVO" NO MOBILE ===== */
@media screen and (max-width: 768px) {
    
    /* Ocultar badge "PROCESSO JUDICIAL EXCLUSIVO" apenas no mobile */
    .section-badge-futuristic,
    .hero-badge {
        display: none !important;
    }
    
    /* Ajustar hero mobile sem o badge */
    .hero-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding-top: 2rem !important;
    }
    
    /* Imagem primeiro (sem badge) */
    .hero-visual {
        order: 1 !important;
        max-width: 100% !important;
        margin: 0 0 1rem 0 !important;
    }
    
    /* Conteúdo depois da imagem */
    .hero-content {
        order: 2 !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    /* Botões por último */
    .hero-actions {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 1.5rem auto 0 auto !important;
    }
}

/* ===== ALINHAR RODAPÉ À ESQUERDA NA VERSÃO WEB ===== */
@media screen and (min-width: 769px) {
    
    /* Rodapé web - alinhar à esquerda */
    .footer-clean {
        text-align: left !important;
    }
    
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 3rem !important;
        text-align: left !important;
        align-items: start !important;
        justify-items: start !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    /* Seções do rodapé alinhadas à esquerda */
    .footer-info,
    .footer-pages,
    .footer-contact {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    /* Títulos do rodapé à esquerda */
    .footer-info h3,
    .footer-pages h4,
    .footer-contact h4 {
        text-align: left !important;
        margin-bottom: 1rem !important;
    }
    
    /* Descrição à esquerda */
    .footer-description {
        text-align: left !important;
        max-width: 300px !important;
        margin: 0 0 1rem 0 !important;
    }
    
    /* CNPJ à esquerda */
    .footer-cnpj {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        margin: 0 !important;
    }
    
    /* Links do rodapé à esquerda */
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .footer-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        text-decoration: none !important;
        color: var(--gray-600) !important;
        transition: var(--transition-normal) !important;
        padding: 0.5rem !important;
        border-radius: var(--radius-md) !important;
        width: fit-content !important;
    }
    
    /* Contatos à esquerda */
    .contact-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Copyright centralizado (pode manter) */
    .footer-bottom {
        text-align: center !important;
        margin-top: 3rem !important;
        padding-top: 2rem !important;
        border-top: 1px solid var(--gray-200) !important;
    }
    
    .footer-bottom p {
        text-align: center !important;
        color: var(--gray-500) !important;
        margin: 0 !important;
    }
}

/* ===== MANTER MOBILE CENTRALIZADO (APENAS RODAPÉ) ===== */
@media screen and (max-width: 768px) {
    
    /* No mobile, manter rodapé centralizado */
    .footer-clean {
        text-align: center !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-info,
    .footer-pages,
    .footer-contact {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .footer-info h3,
    .footer-pages h4,
    .footer-contact h4 {
        text-align: center !important;
    }
    
    .footer-description {
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .footer-cnpj {
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .footer-links {
        align-items: center !important;
        width: 100% !important;
    }
    
    .footer-links a {
        justify-content: center !important;
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }
    
    .contact-item {
        justify-content: center !important;
    }
}
/* Layout da seção Carta d'Identità: Título centralizado + 2 colunas (70/30) */

/* Cabeçalho com título e descrição centralizados */
.carta-identita-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.carta-identita-header .section-title-futuristic {
    text-align: center !important;
    margin-bottom: 1rem;
}

.carta-identita-header .section-description {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Layout de 2 colunas: 70% esquerda + 30% direita */
.carta-identita-layout {
    display: grid !important;
    grid-template-columns: 70% 30% !important;
    gap: 3rem !important;
    align-items: center !important;
}

.carta-identita-layout .passport-info {
    width: 100% !important;
}

.carta-identita-layout .passport-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    margin-top: 2rem !important;
}

/* Ajustar os 4 grupos de informações */
.carta-identita-layout .passport-benefits {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
}

/* Responsivo - empilhar em telas menores */
@media (max-width: 1024px) {
    .carta-identita-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .carta-identita-layout .passport-benefits {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .carta-identita-header {
        margin-bottom: 2rem;
    }
    
    .carta-identita-layout {
        gap: 1.5rem !important;
    }
}


/* ========================================
   Layout da seção Passaporte Italiano
   ======================================== */

/* Cabeçalho com título e descrição centralizados */
.passaporte-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.passaporte-header .section-title-futuristic {
    text-align: center !important;
    margin-bottom: 1rem;
}

.passaporte-header .section-description {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Layout de 2 colunas: 30% esquerda (imagem) + 70% direita (grupos) */
.passaporte-layout {
    display: grid !important;
    grid-template-columns: 30% 70% !important;
    gap: 3rem !important;
    align-items: center !important;
}

.passaporte-layout .passport-info {
    width: 100% !important;
    order: 2 !important;
}

.passaporte-layout .passport-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    margin-top: 2rem !important;
    order: 1 !important;
}

/* Ajustar os 4 grupos de informações */
.passaporte-layout .passport-benefits {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
}

/* Responsivo - empilhar em telas menores */
@media (max-width: 1024px) {
    .passaporte-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .passaporte-layout .passport-benefits {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .passaporte-header {
        margin-bottom: 2rem;
    }
    
    .passaporte-layout {
        gap: 1.5rem !important;
    }
}
/* Correção para Pop-ups - Reverter Centralização */

/* ===== REVERTER CENTRALIZAÇÃO DOS POP-UPS ===== */

/* Pop-up overlay - manter posicionamento original */
.popup-overlay {
    text-align: left !important;
}

/* Pop-up content - manter alinhamento original */
.popup-content {
    text-align: left !important;
}

/* Pop-up carousel - manter alinhamento original */
.popup-carousel {
    text-align: left !important;
}

/* Pop-up header - manter alinhamento original */
.popup-header {
    text-align: left !important;
}

/* Pop-up title - manter alinhamento original */
.popup-title {
    text-align: left !important;
}

/* Pop-up body - manter alinhamento original */
.popup-body {
    text-align: left !important;
}

/* Carousel slides - manter alinhamento original */
.carousel-slide {
    text-align: left !important;
}

.carousel-slide .popup-body {
    text-align: left !important;
}

/* Indicadores do carousel - manter alinhamento original */
.carousel-indicators-header {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Botões de navegação - manter posicionamento original */
.carousel-nav {
    text-align: left !important;
}

/* Conteúdo dos slides - manter alinhamento original */
.carousel-slide .popup-body h2,
.carousel-slide .popup-body h3,
.carousel-slide .popup-body p,
.carousel-slide .popup-body li {
    text-align: left !important;
}

/* Listas dentro dos pop-ups - manter alinhamento original */
.carousel-slide .popup-body ol,
.carousel-slide .popup-body ul {
    text-align: left !important;
    padding-left: 1.5rem !important;
}

/* Notas do pop-up - manter alinhamento original */
.popup-notes {
    text-align: left !important;
}

.popup-notes p {
    text-align: left !important;
}

/* Info do app no pop-up - manter alinhamento original */
.popup-app-info {
    text-align: left !important;
}

.popup-app-info p {
    text-align: left !important;
}

/* Botão de fechar - manter posicionamento original */
.close-popup {
    text-align: center !important; /* Este pode ficar centralizado */
}

/* ===== GARANTIR QUE APENAS MOBILE SEJA AFETADO PELAS OUTRAS REGRAS ===== */

/* Reverter qualquer centralização global que afete pop-ups em desktop */
@media screen and (min-width: 769px) {
    
    /* Garantir que pop-ups não sejam afetados por regras globais de centralização */
    .popup-overlay,
    .popup-content,
    .popup-carousel,
    .popup-header,
    .popup-title,
    .popup-body,
    .carousel-slide,
    .carousel-slide .popup-body {
        text-align: left !important;
    }
    
    .carousel-indicators-header {
        justify-content: flex-start !important;
    }
    
    .carousel-slide .popup-body h2,
    .carousel-slide .popup-body h3,
    .carousel-slide .popup-body p,
    .carousel-slide .popup-body li,
    .popup-notes,
    .popup-notes p,
    .popup-app-info,
    .popup-app-info p {
        text-align: left !important;
    }
    
    .carousel-slide .popup-body ol,
    .carousel-slide .popup-body ul {
        text-align: left !important;
        padding-left: 1.5rem !important;
    }
}
