/* Inglês para Nossa Gente - Modern Tailwind-Inspired Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== HEADER/NAVIGATION STYLES ===== */
.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(17, 24, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0 !important;
    min-height: 80px;
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0 !important;
}

.navbar-brand {
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
}

.navbar-brand:hover {
    color: #7c3aed !important;
    transform: translateY(-2px);
}

.brand-text {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-left: 0.5rem;
}

.logo {
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    height: 40px !important;
    width: auto !important;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: auto !important;
    margin-right: 1rem !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.nav-link:hover {
    color: #ffffff !important;
    background: rgba(124, 58, 237, 0.1) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #7c3aed !important;
    background: rgba(124, 58, 237, 0.15) !important;
}

.nav-link i {
    font-size: 0.9rem;
    margin-right: 0.3rem;
}

.btn-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%) !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.75rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4) !important;
    background: linear-gradient(135deg, #8b5cf6 0%, #f43f5e 100%) !important;
    color: white !important;
}

.navbar-toggler {
    border: none !important;
    padding: 0.4rem !important;
    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Garantir visibilidade em todas as telas */
.navbar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(17, 24, 39, 0.98) !important;
        margin-top: 1rem !important;
        padding: 1rem !important;
        border-radius: 0.75rem !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-link {
        margin: 0.25rem 0 !important;
    }
    
    .btn-cta {
        margin-top: 1rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ===== CUSTOM PROPERTIES INSPIRED BY TAILWIND & IMAGE COLORS ===== */
:root {
    /* Modern Purple/Pink/Blue Palette from Image */
    --primary-purple: #7c3aed;        /* Purple-600 */
    --primary-violet: #8b5cf6;        /* Violet-500 */
    --primary-indigo: #6366f1;        /* Indigo-500 */
    --primary-blue: #3b82f6;          /* Blue-500 */
    --primary-pink: #ec4899;          /* Pink-500 */
    --primary-rose: #f43f5e;          /* Rose-500 */
    
    /* Gradient Combinations */
    --gradient-purple-pink: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-blue-purple: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    --gradient-violet-rose: linear-gradient(135deg, #8b5cf6 0%, #f43f5e 100%);
    --gradient-indigo-pink: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    
    /* Neutral Colors */
    --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;
    
    /* Spacing (Tailwind-like) */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    
    /* Typography */
    --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'Inter', ui-monospace, monospace;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --rounded-sm: 0.125rem;
    --rounded: 0.25rem;
    --rounded-md: 0.375rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 0.75rem;
    --rounded-2xl: 1rem;
    --rounded-3xl: 1.5rem;
    --rounded-full: 9999px;
    
    /* Transitions */
    --transition-all: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-colors: color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-transform: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: var(--gray-200);
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: var(--font-sans);
    font-feature-settings: normal;
    font-variation-settings: normal;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: inherit;
    background-color: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES (Tailwind-like) ===== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 768px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

@media (min-width: 1536px) {
    .container { max-width: 1536px; }
}

/* Flexbox utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

/* Spacing utilities */
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-12 { padding: var(--space-12); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }

.m-4 { margin: var(--space-4); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }
.ml-4 { margin-left: var(--space-4); }
.mr-4 { margin-right: var(--space-4); }

/* Typography utilities */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Color utilities */
.text-white { color: var(--white); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }

/* Background gradients */
.bg-gradient-purple-pink { background: var(--gradient-purple-pink); }
.bg-gradient-blue-purple { background: var(--gradient-blue-purple); }
.bg-gradient-violet-rose { background: var(--gradient-violet-rose); }
.bg-gradient-indigo-pink { background: var(--gradient-indigo-pink); }

/* Border radius utilities */
.rounded { border-radius: var(--rounded); }
.rounded-lg { border-radius: var(--rounded-lg); }
.rounded-xl { border-radius: var(--rounded-xl); }
.rounded-2xl { border-radius: var(--rounded-2xl); }
.rounded-3xl { border-radius: var(--rounded-3xl); }
.rounded-full { border-radius: var(--rounded-full); }

/* Shadow utilities */
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Transform utilities */
.transform { transform: var(--tw-transform); }
.transition-all { transition: var(--transition-all); }
.transition-colors { transition: var(--transition-colors); }
.transition-transform { transition: var(--transition-transform); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:-translate-y-4:hover { transform: translateY(-1rem); }

/* ===== COMPONENT STYLES ===== */

/* Navigation Moderna */
.navbar.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.5rem 0;
}

.navbar.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(124, 58, 237, 0.1);
    border-bottom-color: rgba(124, 58, 237, 0.2);
}

/* Logo com efeito glow */
.brand-container {
    position: relative;
    display: inline-block;
}

.nav-logo {
    height: 3.5rem;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover .brand-glow {
    opacity: 1;
}

.navbar-brand:hover .nav-logo {
    transform: scale(1.05);
}

/* Toggle button moderno */
.modern-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 4px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.modern-toggler:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Links de navegação modernos */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #4a5568;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-nav .nav-link:hover .nav-indicator {
    width: 80%;
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    color: #667eea;
}

.navbar-nav .nav-link.active .nav-indicator {
    width: 80%;
}

/* Botão CTA moderno */
.btn-cta-modern {
    position: relative;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background: transparent;
}

.btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-cta-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-cta-modern:hover .btn-background {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f43f5e 100%);
}

.btn-cta-modern:hover .btn-shine {
    left: 100%;
}

/* Decoração de fundo da navbar */
.navbar-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.05);
    animation: float 8s ease-in-out infinite;
}

.decoration-shape.shape-1 {
    width: 60px;
    height: 60px;
    top: -20px;
    left: 10%;
    animation-delay: 0s;
}

.decoration-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: -30px;
    right: 20%;
    animation-delay: 2s;
}

.decoration-shape.shape-3 {
    width: 40px;
    height: 40px;
    bottom: -10px;
    left: 50%;
    animation-delay: 4s;
}

/* Partículas dinâmicas da navbar */
.dynamic-particle {
    background: rgba(124, 58, 237, 0.08) !important;
    animation: floatDynamic 6s ease-in-out infinite !important;
}

@keyframes floatDynamic {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-5px) translateX(-8px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Efeito glass morphism para navbar mobile */
@media (max-width: 991px) {
    .navbar-nav {
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(25px);
    }
}

/* Animação de entrada para logo */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.brand-container {
    animation: logoEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

/* Indicador de progresso de scroll na navbar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
}

/* Responsividade */
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        justify-content: flex-start;
    }
    
    .btn-cta-modern {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .navbar-actions {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 3rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .btn-content {
        font-size: 0.9rem;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-violet-rose);
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: var(--transition-all);
}

.floating-contact:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.floating-contact .tooltip-text {
    position: absolute;
    right: 4rem;
    background: var(--gray-800);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--rounded-lg);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-all);
}

.floating-contact:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-purple-pink);
    overflow: hidden;
    padding: var(--space-20) 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(244, 63, 94, 0.1) 50%, transparent 100%);
    animation: backgroundMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0" /></linearGradient></defs><g><circle cx="200" cy="300" r="120" fill="url(%23grad1)"/><circle cx="600" cy="200" r="80" fill="url(%23grad1)"/><circle cx="800" cy="500" r="150" fill="url(%23grad1)"/><circle cx="300" cy="700" r="100" fill="url(%23grad1)"/></g></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #fbbf24, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-12);
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--rounded-xl);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-all);
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-blue-purple);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-all);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
    background: linear-gradient(45deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

/* Carousel Styles */
.hero-carousel,
.courses-carousel {
    position: relative;
    border-radius: var(--rounded-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.carousel-item img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--rounded-2xl);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    left: 5%;
    right: 5%;
    bottom: 10%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-full);
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-all);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Section Styles */
.section {
    padding: var(--space-20) 0;
}

.about-section {
    background: var(--white);
}

.courses-section {
    background: var(--gray-50);
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23d1d5db" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.support-section {
    background: var(--gradient-indigo-pink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="supportGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23supportGrid)"/></svg>');
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
}

.support-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.support-section .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: unset;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.support-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Impact Numbers Styles */
.support-visual {
    position: relative;
    z-index: 2;
}

.impact-numbers {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.impact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--rounded-2xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-all);
    position: relative;
    overflow: hidden;
}

.impact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-all);
}

.impact-item:hover::before {
    left: 100%;
}

.impact-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.impact-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-transform);
}

.impact-item:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.impact-content p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Seção de Impacto Modernizada */
.impact-section.modern-impact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%);
    overflow: hidden;
}

/* Badge com gradiente */
.gradient-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: none;
}

/* Cards de Impacto Modernos */
.modern-impact-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.modern-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.4s ease;
}

.modern-impact-card.purple-card::before {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.modern-impact-card.pink-card::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.modern-impact-card.blue-card::before {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.modern-impact-card.violet-card::before {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: opacity 0.4s ease;
}

.background-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.impact-icon-modern {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
}

.modern-impact-card.purple-card .impact-icon-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.modern-impact-card.pink-card .impact-icon-modern {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
}

.modern-impact-card.blue-card .impact-icon-modern {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
}

.modern-impact-card.violet-card .impact-icon-modern {
    background: linear-gradient(135deg, rgba(161, 140, 209, 0.1), rgba(251, 194, 235, 0.1));
}

.impact-icon-modern i {
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.modern-impact-card.pink-card .impact-icon-modern i {
    color: #f093fb;
}

.modern-impact-card.blue-card .impact-icon-modern i {
    color: #4facfe;
}

.modern-impact-card.violet-card .impact-icon-modern i {
    color: #a18cd1;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    animation: pulse 2s infinite;
    opacity: 0;
}

.impact-number-modern {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.impact-sublabel {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
}

.modern-impact-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.15);
}

.modern-impact-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.modern-impact-card:hover .card-background {
    opacity: 0.2;
}

.modern-impact-card:hover .impact-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.modern-impact-card:hover .icon-pulse {
    opacity: 1;
}

.modern-impact-card:hover .card-glow {
    width: 200px;
    height: 200px;
    opacity: 1;
}

/* Seção de Histórias de Sucesso */
.success-stories {
    margin-top: 80px;
}

.stories-content {
    padding: 40px 0;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.stories-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 25px;
    line-height: 1.2;
}

.stories-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.featured-testimonial {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    margin-bottom: 40px;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.featured-testimonial blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2d3748;
    font-style: italic;
    margin: 0 0 25px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info span {
    color: #718096;
    font-size: 0.95rem;
}

.modern-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.modern-cta:hover .btn-shimmer {
    left: 100%;
}

/* Visual da direita */
.stories-visual {
    padding: 20px;
}

.visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.main-visual:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-visual:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: white;
    color: #667eea;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gallery-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    background: white;
    padding: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item.item-1 {
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.gallery-item.item-2 {
    bottom: 30%;
    left: -30px;
    animation: float 6s ease-in-out infinite 2s;
}

.gallery-item.item-3 {
    bottom: -20px;
    right: 20%;
    animation: float 6s ease-in-out infinite 4s;
}

.item-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.1) rotate(5deg);
}

.gallery-item:hover .item-badge {
    opacity: 1;
    bottom: -35px;
}

.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decorative-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    animation: float 8s ease-in-out infinite;
}

.decorative-shapes .shape-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.decorative-shapes .shape-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: -5%;
    animation-delay: 3s;
}

.decorative-shapes .shape-3 {
    width: 80px;
    height: 80px;
    bottom: 0%;
    left: 50%;
    animation-delay: 6s;
}

/* Background da seção */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.03);
    animation: float 12s ease-in-out infinite;
}

.bg-element.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-element.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.bg-element.element-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 70%;
    animation-delay: 8s;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .impact-section.modern-impact {
        padding: 60px 0;
    }
    
    .modern-impact-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .impact-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .impact-icon-modern i {
        font-size: 2rem;
    }
    
    .impact-number-modern {
        font-size: 3rem;
    }
    
    .stories-title {
        font-size: 2rem;
    }
    
    .featured-testimonial {
        padding: 25px;
    }
    
    .gallery-item {
        width: 60px;
        height: 60px;
    }
}

/* Cards About Section Modernos */
.about-card {
    position: relative;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    height: 100%;
    min-height: 360px;
}

.about-card.modern {
    border: none;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.about-card.purple-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-card.pink-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.about-card.blue-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-shapes .shape-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-shapes .shape-2 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: -40px;
    animation-delay: 2s;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.about-card .about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card .about-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-stats {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-item i {
    font-size: 1.1rem;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    border-radius: 24px;
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 80px -15px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-card:hover .card-shine {
    left: 100%;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.about-card:hover .floating-shapes .shape {
    animation-duration: 3s;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Seção de Estatísticas Coloridas */
.stats-section {
    margin-top: 80px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.4s ease;
}

.stat-card.stat-purple::before {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.stat-card.stat-pink::before {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.stat-card.stat-blue::before {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-card.stat-violet::before {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.stat-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.stat-card.stat-purple .stat-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.stat-card.stat-pink .stat-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.stat-card.stat-blue .stat-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-card.stat-violet .stat-icon {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-card:hover .stat-number {
    color: #1a202c;
}

/* Animação de contagem */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.counting {
    animation: countUp 0.6s ease-out;
}

/* ===== MODERN FOOTER STYLES ===== */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: var(--white);
    padding: var(--space-24) 0 var(--space-8);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-20);
}

/* Decorative Background */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    clip-path: polygon(0 0, 100% 0, 100% 40px, 0 80px);
    animation: waveMove 8s ease-in-out infinite;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.footer-particles .particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    background: rgba(236, 72, 153, 0.6);
}

.footer-particles .particle:nth-child(2) {
    left: 40%;
    animation-delay: 3s;
    background: rgba(139, 92, 246, 0.6);
}

.footer-particles .particle:nth-child(3) {
    left: 60%;
    animation-delay: 6s;
    background: rgba(59, 130, 246, 0.6);
}

.footer-particles .particle:nth-child(4) {
    left: 80%;
    animation-delay: 9s;
    background: rgba(244, 63, 94, 0.6);
}

.footer-particles .particle:nth-child(5) {
    left: 10%;
    animation-delay: 12s;
    background: rgba(99, 102, 241, 0.6);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-3xl);
    padding: var(--space-12);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-16);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
}

.newsletter-content h3 i {
    color: var(--primary-pink);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.newsletter-form .input-group {
    margin-bottom: var(--space-3);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-xl);
    color: var(--white);
    padding: var(--space-4) var(--space-6);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
    outline: none;
    color: var(--white);
}

.newsletter-btn {
    background: var(--gradient-purple-pink);
    border: none;
    border-radius: var(--rounded-xl);
    padding: var(--space-4) var(--space-8);
    font-weight: 600;
    transition: var(--transition-all);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Footer Brand Enhanced */
.footer-brand {
    position: relative;
    z-index: 2;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-6);
}

.footer-logo {
    height: 4rem;
    width: auto;
    position: relative;
    z-index: 2;
    transition: var(--transition-all);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-all);
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-container:hover .footer-logo {
    transform: scale(1.1);
}

.logo-container:hover .logo-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.brand-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-size: 1rem;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.badge-item {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-full);
    padding: var(--space-2) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: var(--transition-all);
    backdrop-filter: blur(10px);
}

.badge-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.badge-item i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.badge-item span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Enhanced Social Links */
.social-links h5 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--rounded-xl);
    text-decoration: none;
    transition: var(--transition-all);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-all);
}

.social-link:hover::before {
    left: 100%;
}

.social-link.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(129, 52, 175, 0.2));
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(129, 52, 175, 0.3));
    border-color: #e1306c;
    transform: translateX(8px);
}

.social-link.email {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
}

.social-link.email:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    border-color: #3b82f6;
    transform: translateX(8px);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(16, 185, 129, 0.2));
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(16, 185, 129, 0.3));
    border-color: #25d366;
    transform: translateX(8px);
}

.social-link i {
    font-size: 1.25rem;
    color: var(--white);
}

.social-link span {
    color: var(--white);
    font-weight: 500;
}

/* Footer Sections Enhanced */
.footer-section {
    position: relative;
    z-index: 2;
}

.footer-section h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 3px;
    background: var(--gradient-purple-pink);
    border-radius: var(--rounded-full);
}

.footer-section h5 i {
    color: var(--primary-pink);
    margin-right: var(--space-2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-all);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.95rem;
    line-height: 1.5;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--rounded-lg);
    position: relative;
}

.footer-links a i {
    color: var(--primary-purple);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition-all);
}

.footer-links a:hover {
    color: var(--white);
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(8px);
    border-left: 3px solid var(--primary-pink);
}

.footer-links a:hover i {
    color: var(--primary-pink);
    opacity: 1;
    transform: scale(1.2);
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: var(--space-12) 0 var(--space-8);
}

/* Enhanced Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: var(--space-8);
}

.copyright-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.copyright-info .highlight {
    color: var(--white);
    font-weight: 600;
}

.copyright-info small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: var(--space-2);
    display: block;
}

.footer-message {
    text-align: right;
}

.love-message {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.love-message .heartbeat {
    color: var(--primary-pink);
    animation: heartbeat 2s ease-in-out infinite;
}

.love-message .gradient-text {
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tech-credits {
    margin-top: var(--space-2);
}

.tech-credits small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Animations */
@keyframes waveMove {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-20px) scaleY(1.1); }
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}
