/* ============================================
   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: #6927D9;
    --primary-dark: #5a1fb8;
    --secondary-color: #5DFFA2;
    --accent-yellow: #DFFF72;
    --dark-bg: #16082e;
    --dark-bg-gradient: linear-gradient(135deg, #1a0b33 0%, #16082e 50%, #120624 100%);
    --hero-bg: linear-gradient(135deg, #2d1061 0%, #16082e 50%, #3b16a0 100%);
    --light-bg: #ffffff;
    --surface: #f6f3fb;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #6927D9 0%, #5a1fb8 100%);
    --gradient-secondary: linear-gradient(135deg, #5DFFA2 0%, #DFFF72 100%);
    --shadow-sm: 0 2px 10px rgba(105, 39, 217, 0.1);
    --shadow-md: 0 4px 20px rgba(105, 39, 217, 0.15);
    --shadow-lg: 0 10px 40px rgba(105, 39, 217, 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(22, 8, 46, 0.96);
    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: 52px;
    width: 170px;
    object-fit: cover;
    object-position: 42% 52%;
    filter: brightness(0) invert(1);
}

.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-size: 1.1rem;
    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(--accent-yellow);
    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: 100vh;
    min-height: 100dvh;
}

.hero-banner {
    background: var(--hero-bg);
    position: relative;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: 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: #16082e;
    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(22, 8, 46, 0.55);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 72px 24px 48px;
}

.hero-text-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(1.6rem, 3.2vw, 2.45rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.22;
    margin: 0 auto 1.15rem;
    max-width: 16.5em;
    text-align: center;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 2rem;
    line-height: 1.55;
    max-width: 34em;
    text-align: center;
    text-wrap: pretty;
}

.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(105, 39, 217, 0.3);
}

.btn-cta-link span {
    color: #ffffff !important;
}

.btn-cta-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 39, 217, 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(--primary-color);
    border: none;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(105, 39, 217, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(105, 39, 217, 0.4);
    color: #ffffff;
    background: var(--primary-dark);
}

.btn-primary-custom:disabled {
    opacity: 0.7;
    transform: none;
    pointer-events: none;
}

.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: var(--primary-dark);
    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: 820px;
    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: var(--primary-color);
    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(105, 39, 217), 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(105, 39, 217), 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(105, 39, 217), 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(105, 39, 217), 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid rgba(105, 39, 217), 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(105, 39, 217), 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg-gradient);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    height: 56px;
    width: 180px;
    object-fit: cover;
    object-position: 42% 52%;
    display: block;
    margin-left: -10px;
    filter: brightness(0) invert(1);
}

.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(105, 39, 217), 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: 0;
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        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) {
    .navbar-nav .nav-link {
        font-size: 1.05rem;
        margin: 0 0.25rem;
        padding: 0.5rem 0.75rem !important;
    }

    .navbar .dropdown-item {
        font-size: 1rem;
    }

    .hero-title {
        max-width: 20em;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0;
    }
    
    .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: 0;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-title {
        font-size: 1.7rem;
        padding: 0;
        max-width: none;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        padding: 0;
    }
    
    .hero-text-content {
        margin-bottom: 0;
        padding: 0 0.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        padding: 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .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;
    }

    .navbar-nav .nav-link {
        font-size: 1.05rem;
        margin: 0;
        padding: 0.7rem 0 !important;
    }

    .navbar .dropdown-item {
        font-size: 1rem;
    }
    
    .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(105, 39, 217), 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: 0;
        min-height: 100vh;
        min-height: 100dvh;
        height: 100vh;
        height: 100dvh;
        margin-top: 0 !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.35;
        text-align: center;
        max-width: none;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-banner .container {
        padding-top: 84px;
        text-align: center;
        align-items: center;
    }
    
    .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;
    }
}

/* ============================================
   BUDZY — NEW SECTIONS
   ============================================ */
.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    background: rgba(105, 39, 217, 0.7);
    top: -120px;
    right: -80px;
}

.hero-orb-2 {
    width: 280px;
    height: 280px;
    background: rgba(93, 255, 162, 0.22);
    bottom: -80px;
    left: 8%;
}

.hero-orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(223, 255, 114, 0.28);
    top: 28%;
    left: 18%;
}

.hero-banner .container {
    min-height: 100%;
}

.hero-eyebrow {
    display: inline-block;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}

.navbar .dropdown-menu {
    background: #16082e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(105, 39, 217, 0.45);
    color: #fff;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.35rem;
}

.navbar-nav .nav-item.dropdown .nav-link::after {
    display: none;
}

.intro-section {
    padding: 4.5rem 0 2rem;
    background: var(--light-bg);
}

.insight-section {
    padding: 4.5rem 0;
    background: var(--surface);
}

.insight-panel {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.75rem 2.5rem;
    border: 1px solid rgba(105, 39, 217, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.insight-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    border-radius: 99px;
    background: var(--gradient-primary);
}

.insight-panel .section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
    margin-bottom: 1rem;
}

.insight-panel .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .insight-panel {
        padding: 2rem 1.35rem;
    }
}

.intro-kicker {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.solutions-section {
    padding: 4rem 0 6rem;
    background: var(--surface);
}

.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(105, 39, 217, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.product-card-accent.accent-green {
    background: var(--gradient-secondary);
}

.product-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0.35rem 0 0.5rem;
    line-height: 1.35;
}

.product-card-title {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.product-card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.15rem;
    text-wrap: pretty;
}

.product-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

@media (min-width: 576px) {
    .product-points {
        grid-template-columns: 1fr 1fr;
        column-gap: 1.25rem;
        row-gap: 0.5rem;
    }
}

.product-points li {
    position: relative;
    padding-left: 1.05rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
}

.product-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.product-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.product-card-alt .product-points li::before {
    background: #2dbd78;
}

.product-spotlight {
    padding: 6rem 0;
    background: var(--light-bg);
}

.spotlight-kicker {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.spotlight-lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.spotlight-lead-sm {
    font-size: 1.15rem;
}

.spotlight-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.spotlight-visual {
    background: var(--hero-bg);
    border-radius: 24px;
    padding: 2rem;
    min-height: 340px;
    box-shadow: var(--shadow-lg);
}

.visual-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
}

.visual-bar {
    height: 8px;
    width: 42%;
    border-radius: 99px;
    background: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.visual-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.visual-row span {
    height: 10px;
    flex: 1;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.15);
}

.visual-row span:first-child {
    background: var(--secondary-color);
}

.visual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

.visual-mini-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 0.75rem;
    color: #fff;
}

.visual-mini-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.visual-mini-card span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 0.75rem;
}

.service-section {
    padding: 6rem 0;
    background: var(--surface);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.service-list i {
    color: var(--primary-color);
    font-size: 1.15rem;
}

.service-visual-card {
    background: #16082e;
    color: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    min-height: 340px;
    box-shadow: var(--shadow-lg);
}

.service-chip {
    display: inline-block;
    background: rgba(93, 255, 162, 0.18);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}

.service-visual-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.service-visual-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.service-visual-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

.service-visual-steps div {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.9rem 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-visual-steps i {
    display: block;
    color: var(--accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.about-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-panel {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-subhead {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.25rem 0 1rem;
}

.btn-cta-light {
    background: var(--accent-yellow);
    color: #16082e;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-cta-light:hover {
    background: #e8f060;
    color: #16082e;
    transform: translateY(-3px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.section-title.text-start {
    text-align: left;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.65rem;
        max-width: none;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-banner .container {
        min-height: 100%;
        padding-top: 88px;
        padding-bottom: 48px;
        text-align: center;
        align-items: center;
    }

    .product-points,
    .visual-cards,
    .service-visual-steps {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1.75rem;
    }
}

