/* ============================================
   FONT FACE
   ============================================ */
@font-face {
    font-family: 'Estelar';
    src: url('../fonts/woff2/Estelar-Regular.woff2') format('woff2'),
         url('../fonts/woff/Estelar-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Estelar';
    src: url('../fonts/woff2/Estelar-Medium.woff2') format('woff2'),
         url('../fonts/woff/Estelar-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Estelar';
    src: url('../fonts/woff2/Estelar-SemiBold.woff2') format('woff2'),
         url('../fonts/woff/Estelar-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Estelar';
    src: url('../fonts/woff2/Estelar-Bold.woff2') format('woff2'),
         url('../fonts/woff/Estelar-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Estelar';
    src: url('../fonts/woff2/Estelar-ExtraBold.woff2') format('woff2'),
         url('../fonts/woff/Estelar-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary-color: #314DDC;
    --secondary-color: #FF6306;
    --dark-bg: #2a3441;
    --dark-bg-gradient: linear-gradient(135deg, #2a3441 0%, #1e2835 50%, #1a2332 100%);
    --hero-bg: linear-gradient(135deg, #314DDC 0%, #2840b8 50%, #314DDC 100%);
    --light-bg: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #314DDC 0%, #2840b8 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6306 0%, #e55a00 100%);
    --shadow-sm: 0 2px 10px rgba(49, 77, 220, 0.1);
    --shadow-md: 0 4px 20px rgba(49, 77, 220, 0.15);
    --shadow-lg: 0 10px 40px rgba(49, 77, 220, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Estelar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: none;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(49, 77, 220, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.navbar-toggler {
    position: relative;
    z-index: 1001;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 35px;
        max-width: 130px;
    }
}

.brand-text {
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--light-bg) !important;
}

.btn-cta-nav {
    background: var(--gradient-primary) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem !important;
}

.btn-cta-nav::after {
    display: none;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: auto;
}

.hero-banner {
    background-color: #0E1B57;
    position: relative;
    padding: 80px 0 120px;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0E1B57;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 27, 87, 0.85);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: 80px;
}

.hero-text-content {
    margin-bottom: 0;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-image-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 1rem 0;
}

/* ============================================
   HERO CTA SECTION
   ============================================ */
.hero-cta-section {
    padding: 4rem 0;
    background: #f5f7fa;
    position: relative;
}

.hero-cta-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .hero-cta-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-cta-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.hero-cta-content {
    text-align: center;
}

.hero-cta-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.btn-cta-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem 3rem;
    background: var(--secondary-color);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 99, 6, 0.3);
}

.btn-cta-link span {
    color: #ffffff !important;
}

.btn-cta-link:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 99, 6, 0.4);
    color: #ffffff !important;
}

.btn-cta-link:hover span {
    color: #ffffff !important;
}

.btn-cta-link i {
    font-size: 1.25rem;
    color: #ffffff !important;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
}

.btn-primary-custom {
    background: var(--secondary-color);
    border: none;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 99, 6, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 99, 6, 0.4);
    color: #ffffff;
    background: #e55a00;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Dashboard Mockup / Platform Image */
.dashboard-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: var(--transition);
    object-fit: contain;
    max-width: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Estilos para o mockup antigo (caso queira manter como fallback) */
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: block;
}

.dashboard-dots span:nth-child(2) {
    background: var(--primary-color);
}

.dashboard-dots span:nth-child(3) {
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-title {
    color: var(--light-bg);
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-greeting h3 {
    color: var(--light-bg);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-greeting p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light-bg);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Shapes - Removido para design mais limpo */
.hero-shapes {
    display: none;
}

/* ============================================
   HERO CTA SECTION
   ============================================ */
/* ============================================
   HERO CTA SECTION
   ============================================ */
.hero-cta-section {
    padding: 4rem 0;
    background: #f5f7fa;
}

.hero-cta-content {
    text-align: center;
}

.hero-cta-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
}

.btn-cta-link:hover {
    color: #0052cc;
    transform: translateY(-2px);
}

.btn-cta-link i {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--light-bg);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--gradient-secondary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: 6rem 0;
    background: var(--dark-bg-gradient);
    position: relative;
    overflow: hidden;
}

.results-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.result-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.result-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.result-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.result-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.result-label {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: #314DDC;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--light-bg);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-shapes {
    display: none;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(49, 77, 220, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(49, 77, 220, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-bg);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(49, 77, 220, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(49, 77, 220, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid rgba(49, 77, 220, 0.1);
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(49, 77, 220, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg-gradient);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    display: block;
    margin-left: -10px;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--light-bg);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-bg);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    color: var(--light-bg);
}

.social-section-hidden {
    display: none;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--light-bg);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.back-to-top {
    bottom: 100px;
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(49, 77, 220, 0.98) !important;
        margin-bottom: 0;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 150px;
        filter: brightness(0) invert(1);
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-banner {
        padding: 80px 0 60px;
        height: 500px;
        margin-top: 0;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-text-content {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .results-section {
        padding: 4rem 0;
    }
    
    .results-title {
        font-size: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .result-number {
        font-size: 3rem;
    }
    
    .result-label {
        font-size: 1rem;
    }
    
    .result-description {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        background: rgba(49, 77, 220, 0.98) !important;
        margin-bottom: 0;
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        height: 35px;
        max-width: 130px;
    }
    
    .hero-section {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-banner {
        padding: 70px 0 50px;
        height: 450px;
        margin-top: 0 !important;
    }
    
    .hero-banner .container {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .results-section {
        padding: 3rem 0;
    }
    
    .results-title {
        font-size: 1.25rem;
    }
    
    .result-card {
        padding: 1.5rem 1rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .result-label {
        font-size: 0.9rem;
    }
    
    .result-description {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

