/* ================================================
   HEADER / NAVBAR ESPECÍFICO
   ================================================ */

/* Navbar sticky positioning */
.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Navbar customization */
.navbar {
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(16px);
}

/* Default navbar (hero section - light background) */
.navbar.section-hero {
    /* background: rgba(255, 255, 255, 0.85) !important; */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Light sections (why-choose, how-it-works, faq, contact) */
.navbar.section-light {
    background: rgba(249, 250, 251, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* White sections (services, advantages) */
.navbar.section-white {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Dark sections (templates, cta) */
.navbar.section-dark {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Text color adjustments for dark sections */
.navbar.section-dark .navbar-brand {
    color: var(--primary) !important;
}

.navbar.section-dark .nav-link {
    color: #f8fafc !important;
}

.navbar.section-dark .nav-link:hover {
    color: var(--primary) !important;
}

.navbar.section-dark .navbar-toggler-icon {
    filter: invert(1);
}

/* Dark mode adaptations */
[data-theme="dark"] .navbar.section-hero,
[data-theme="dark"] .navbar.section-white {
    background: rgba(15, 23, 42, 0.85) !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar.section-light {
    background: rgba(30, 41, 59, 0.85) !important;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .navbar.section-dark {
    background: rgba(15, 23, 42, 0.90) !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.nav-link {
    color: var(--foreground) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 60%;
}

/* Active nav link indicator */
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    width: 60%;
}

/* Navbar button enhancement */
.navbar .btn-primary {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

/* Mobile navbar enhancements */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.navbar-toggler:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* Mobile dropdown styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar.section-dark .navbar-collapse {
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    [data-theme="dark"] .navbar-collapse {
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(51, 65, 85, 0.3);
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
}

/* ================================================
   SITE EXPRESSO - STYLES ESPECÍFICOS
   ================================================ */

/* Carousel card styles */
.carousel-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    border: 1px solid #e6e6e6;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
}

/* Hero section styles */
.hero-section {
    background: #0f172a !important;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: space-between;
}

.hero-text {
    flex-grow: 1;
}

.hero-cta {
    margin-top: auto;
}

.hero-image {
    /* background-color: #e2e8f0; */
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    background-image: url('../img/hero_servicos.png');
    background-position: center;
    background-size: cover;
}

/* Trust logos */
.trust-logos {
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Feature icon styles */
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-icon-m {
    width: 64px;
    height: 64px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(225, 29, 72, 0.1));
    transform: scale(1.1);
}


.features-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    z-index: 1;
}

.features-section-bg > .container {
    position: relative;
    z-index: 2;
}

/* Benefit section styles */
.benefit-section {
    background-image: url('../img/bg_dark.webp');
}

.benefit-image {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Pricing card styles */
.pricing-card {
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 25px 50px rgba(225, 29, 72, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Logo placeholder styles */
.logo-placeholder {
    width: 80px;
    height: 40px;
    background-color: #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

/* Advanced animations */
.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

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

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

/* Stagger animations */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }
.animate-stagger-6 { animation-delay: 0.6s; }

/* Pulse animation for CTA button */
.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

/* Typing animation */
.typing-demo {
    width: 15ch;
    animation: typing 2s steps(15), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing {
    from {
        width: 0
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

/* ================================================
   NAVBAR ICONS STYLES
   ================================================ */

/* Estilos para os ícones da navbar */
.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background-color: transparent;
    border: 1px solid transparent;
}

.nav-icon-link:hover {
    color: var(--primary);
    background-color: rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.2);
    transform: translateY(-1px);
}

.nav-icon-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.3);
}

/* Adaptação para seções escuras */
.navbar.section-dark .nav-icon-link {
    color: #f8fafc;
}

.navbar.section-dark .nav-icon-link:hover {
    color: var(--primary);
    background-color: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.3);
}

/* Dark mode adaptations */
[data-theme="dark"] .nav-icon-link {
    color: #f8fafc;
}

[data-theme="dark"] .nav-icon-link:hover {
    color: var(--primary);
    background-color: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.3);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .nav-icon-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ================================================
   DROPDOWN MEGA MENU
   ================================================ */

.dropdown-mega {
    position: static !important;
}

.dropdown-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;
    border-radius: 0 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1000;
}

.dropdown-mega:hover .dropdown-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-caret {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.dropdown-mega:hover .dropdown-caret {
    transform: rotate(180deg);
}

/* Default dropdown (hero section) */
.navbar.section-hero .dropdown-mega-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light sections dropdown */
.navbar.section-light .dropdown-mega-menu {
    background: rgba(249, 250, 251, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* White sections dropdown */
.navbar.section-white .dropdown-mega-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Dark sections dropdown */
.navbar.section-dark .dropdown-mega-menu {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Service Cards */
.service-card {
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Service cards em seções claras */
.navbar.section-hero .service-card,
.navbar.section-light .service-card,
.navbar.section-white .service-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--foreground);
}

.navbar.section-hero .service-card:hover,
.navbar.section-light .service-card:hover,
.navbar.section-white .service-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Service cards em seções escuras */
.navbar.section-dark .service-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    color: #f8fafc;
}

.navbar.section-dark .service-card:hover {
    background: rgba(30, 41, 59, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.navbar.section-dark .service-card h5 {
    color: #f8fafc;
}

.navbar.section-dark .service-card .text-muted {
    color: #94a3b8 !important;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

/* Dark mode adaptations for dropdown */
[data-theme="dark"] .navbar.section-hero .dropdown-mega-menu,
[data-theme="dark"] .navbar.section-white .dropdown-mega-menu {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar.section-light .dropdown-mega-menu {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .service-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.3);
    color: #f8fafc;
}

[data-theme="dark"] .service-card:hover {
    background: rgba(30, 41, 59, 0.95);
}

[data-theme="dark"] .service-card h5 {
    color: #f8fafc;
}

[data-theme="dark"] .service-card .text-muted {
    color: #94a3b8 !important;
}

/* ================================================
   MOBILE NAVIGATION DRAWER
   ================================================ */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.show {
    right: 0;
}

.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-nav-content {
    padding: 1rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
}

.mobile-services-section {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
}

.mobile-service-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--foreground);
}

.mobile-service-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    color: var(--primary);
}

.mobile-service-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

/* Dark mode adaptations for mobile drawer */
[data-theme="dark"] .mobile-nav-drawer {
    background: rgba(15, 23, 42, 0.95);
    border-left: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .mobile-nav-header {
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

[data-theme="dark"] .mobile-nav-item {
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

[data-theme="dark"] .mobile-nav-close:hover {
    background: rgba(51, 65, 85, 0.3);
}

[data-theme="dark"] .mobile-services-section {
    background: rgba(51, 65, 85, 0.2);
}

[data-theme="dark"] .mobile-service-item {
    background: rgba(30, 41, 59, 0.8);
}

[data-theme="dark"] .mobile-service-item:hover {
    background: rgba(30, 41, 59, 1);
}

/* Hamburger menu animation */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Dark sections hamburger color */
.navbar.section-dark .hamburger span {
    background: #f8fafc;
}

/* ================================================
   CONTEÚDO ESPECÍFICO DA HOME
   ================================================ */

.hero-container {
    z-index: 10;
    margin: auto 0;
}

.hero-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.scroll-indicator-container {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator-dot {
    width: 4px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Hero section particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Why choose section */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(59, 130, 246, 0.1);
}

/* Services section descriptions */
.services-description {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

/* How it works section descriptions */
.hiw-description {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container {
    left: 32px;
    width: 2px;
    background-color: var(--primary);
    z-index: 10;
}

.timeline-step-number {
    width: 68px;
    height: 64px;
    background-color: var(--primary);
    z-index: 10;
}

.timeline-step-icon {
    width: 72px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
}

.timeline-step-content {
    padding-right: 1rem;
}

/* Timeline styles */
.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(59, 130, 246, 0.3));
}

.timeline-step {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 5;
    position: relative;
}

/* Advantages section */
#advantages {
    position: relative;
}

.advantages-description {
    max-width: 600px;
    margin: 0 auto;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
}

/* Templates section */
.templates-description {
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

.template-image-height {
    height: 200px;
    object-fit: cover;
}

.template-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.templates-section-shadow {
    box-shadow: 0px -15px 15px -3px rgba(0,0,0,0.1);
}

.template-image {
    transition: transform 0.3s ease;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-template {
    border: none;
    background-color: var(--background);
    border-radius: 50px 50px 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-template .position-relative.overflow-hidden {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card:hover .template-image {
    transform: scale(1.05);
}

.template-preview-btn {
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.card:hover .template-preview-btn {
    transform: translateY(0);
}

.card-portfolio {
    border: none;
    background-color: var(--background);
    border-radius: 50px 50px 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-portfolio:hover {
    transform: scale(1.05);
}

.card-portfolio .position-relative.overflow-hidden {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* CTA section */
.cta-description {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon-large {
    width: 60px;
    height: 60px;
    background-color: rgba(59, 130, 246, 0.1);
}

.cta-section-shadow {
    box-shadow: 0px 15px 15px -3px rgba(0,0,0,0.1);
}

/* FAQ section */
.faq-description {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact section */
.contact-description {
    max-width: 600px;
    margin: 0 auto;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
}

.contact-info-box {
    background-color: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Image divider */
.img-divider {
    width: 100%;
    height: 2rem;
    background-image: url('../img/bg_white.png');
    background-size: auto;
    background-repeat: repeat-x;
    background-position: center;
}

/* CTA com fundo */
.contact-cta-container {
    background-image: url('../img/bg_dark.webp');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 40px;
    max-width: 1320px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 20px;
    margin: 0 auto;
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-text h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--neutral-25);
}

.contact-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #111;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.contact-cta-btn:hover {
    background-color: #ffd700;
    color: #000;
}

/* Estilos para os itens de serviços */
.service-item {
    padding: 30px 0 30px 0;
    transition: all 0.3s ease;
}

.service-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-content {
    padding: 40px 0;
}

.service-content h3 {
    color: var(--dark);
    font-size: 2.5rem;
    line-height: 1.2;
}

.service-content .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6c757d;
}

.features-list .d-flex {
    font-size: 1.1rem;
    line-height: 1.5;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

/* ================================================
   SPLIDE CAROUSEL
   ================================================ */

/* CSS customizado para o carrossel */
.splide__slide {
    padding: 0.75rem;
    height: auto;
}

.splide__slide div {
    /* width: 100%; */
    /* max-width: 250px; */
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Customização das setas */
.splide__arrow {
    background: var(--primary, #007bff);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.splide__arrow:hover {
    background: var(--primary-dark, #0056b3);
}

.splide__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Customização da paginação */
.splide__pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 24px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splide__pagination__page {
    background: rgb(243, 249, 255);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
    background: var(--primary, #007bff);
    transform: scale(1.2);
}

#services {
    position: relative;
}

/* Container do Splide para garantir o espaçamento correto */
#services-carousel {
    padding-bottom: 50px;
}

.cta {
    background: #333;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
    height: 450px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.cta:hover {
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
}

.cta:hover img {
    filter: brightness(70%);
}

.cta:hover .text {
    bottom: 0;
}

.cta img {
    bottom: 0;
    filter: brightness(100%);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta .text {
    bottom: -40%;
    padding: 15px;
    position: absolute;
    transition: 0.5s ease-in-out;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* Media query para mobile */
@media (max-width: 768px) {
    .cta .text {
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    }
    
    .cta img {
        filter: brightness(80%);
    }
    
    .cta {
        margin-bottom: 20px;
    }
}

.cta .text h2 {
    color: #fff;
    display: inline-block;
    font-weight: 300;
    margin-bottom: 5px;
    position: relative;
    font-size: 1.5rem;
}

.cta .text p {
    color: #fff;
    font-weight: 300;
    line-height: 1.4;
    font-size: 0.9rem;
}

.dotted-arrow {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* ================================================
   MEDIA QUERIES
   ================================================ */

/* Responsive adjustments */
@media (min-width: 992px) {
    .mobile-nav-overlay,
    .mobile-nav-drawer {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .dropdown-mega-menu {
        display: none !important;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    /* Hide old navbar toggle icon */
    .navbar-toggler-icon {
        display: none;
    }
}

/* Responsividade para serviços */
@media (max-width: 992px) {
    .service-item {
        padding: 40px 0;
        text-align: center;
    }
    
    .service-content {
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
    
    .service-image-container {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .service-content h3 {
        font-size: 1.75rem;
    }
    
    .service-content .lead {
        font-size: 1.1rem;
    }
    
    .service-item {
        padding: 30px 0;
    }
}

.pricing-card-modern {
            border-radius: 24px;
            padding: 2rem;
            height: 100%;
            position: relative;
            border: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .pricing-card-modern:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        /* FREE Card - Purple gradient */
        .card-free {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
        }

        /* PREMIUM Card - Light gray */
        .card-premium {
            background: #f8fafc;
            color: #1f2937;
            border: 1px solid #e5e7eb;
        }

        .plan-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .badge-free {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .badge-premium {
            background: transparent;
            color: #6b7280;
            border: 1px solid #d1d5db;
        }

        .price-display {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .price-free {
            color: white;
        }

        .price-premium {
            color: #6366f1;
        }

        .price-subtitle {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2.5rem 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .icon-free {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .icon-premium {
            background: rgba(99, 102, 241, 0.1);
            color: #6366f1;
        }

        .cta-button {
            width: 100%;
            padding: 1rem;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .btn-free {
            background: white;
            color: #6366f1;
        }

        .btn-free:hover {
            background: #f1f5f9;
            color: #6366f1;
            transform: translateY(-2px);
        }

        .btn-premium {
            background: #6366f1;
            color: white;
        }

        .btn-premium:hover {
            background: #5856eb;
            color: white;
            transform: translateY(-2px);
        }

        .card-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .pricing-card-modern {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .price-display {
                font-size: 3rem;
            }
        }
        
         /* Novas classes específicas para o layout */
        .features-grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .features-header-section {
            padding-right: 2rem;
        }

        .features-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .feature-card-compact {
            background: var(--surface);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .feature-card-compact:not(.pricing-plan-featured):hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            background: var(--background);
        }

        .feature-icon-compact {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .feature-card-compact:hover .feature-icon-compact {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
            transform: scale(1.1);
        }

        .feature-title-compact {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .feature-description-compact {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .cta-button-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
        }

        .cta-button-link:hover {
            color: var(--primary-dark);
            transform: translateX(4px);
        }

        .cta-button-link i {
            font-size: 0.875rem;
            transition: transform 0.3s ease;
        }

        .cta-button-link:hover i {
            transform: translateX(2px);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .features-grid-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-header-section {
                padding-right: 0;
                text-align: center;
                margin-bottom: 1rem;
            }

            .features-cards-grid {
                gap: 1rem;
            }

            .feature-card-compact {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .features-cards-grid {
                grid-template-columns: 1fr;
            }

            .feature-card-compact {
                padding: 1.25rem;
            }

            .features-grid-layout {
                gap: 1.5rem;
            }
        }

 /* Novas classes para a seção de cards coloridos */

        .colorful-cards-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .colorful-cards-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 24px;
            margin-top: 60px;
        }

        .colorful-cards-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr 2fr;
            gap: 24px;
            margin-top: 20px;
        }

        .colorful-card {
            border-radius: 24px;
            padding: 40px 32px;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            border: none;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .colorful-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
        }


        .colorful-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 24px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .colorful-card-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
            color: inherit;
        }

        .colorful-card-description {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .colorful-card-button {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            align-self: flex-start;
        }

        .colorful-card-button:hover {
            background: rgba(255, 255, 255, 0.25);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .colorful-card-button i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .colorful-card-button:hover i {
            transform: translateX(4px);
        }

        /* Decorative elements */
        .colorful-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .colorful-card:hover::before {
            transform: scale(1.2);
            opacity: 0.8;
        }

        /* Geometric pattern overlay */
        .geometric-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            opacity: 0.1;
            pointer-events: none;
        }

        .geometric-shape {
            position: absolute;
            border-radius: 50%;
            background: currentColor;
        }

        .shape-1 {
            width: 60px;
            height: 60px;
            top: 20px;
            right: 20px;
        }

        .shape-2 {
            width: 40px;
            height: 40px;
            top: 60px;
            right: 80px;
        }

        .shape-3 {
            width: 30px;
            height: 30px;
            top: 100px;
            right: 40px;
        }

        .shape-4 {
            width: 20px;
            height: 20px;
            top: 80px;
            right: 120px;
            border-radius: 4px;
        }

        /* Section header */
        .section-header-colorful {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-subtitle-colorful {
            color: var(--primary);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title-colorful {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .section-description-colorful {
            font-size: 20px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .colorful-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title-colorful {
                font-size: 36px;
            }

            .colorful-card {
                padding: 32px 24px;
                min-height: 280px;
            }

            .colorful-cards-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .section-title-colorful {
                font-size: 28px;
            }

            .section-description-colorful {
                font-size: 18px;
            }

            .colorful-card-title {
                font-size: 20px;
            }

            .colorful-card-description {
                font-size: 14px;
            }

            .colorful-card {
                padding: 24px 20px;
                min-height: 240px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .colorful-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Animation on scroll */
        .colorful-card {
            opacity: 0;
            transform: translateY(40px);
            animation: slideUpFade 0.8s ease-out forwards;
        }

        .colorful-card:nth-child(1) { animation-delay: 0.1s; }
        .colorful-card:nth-child(2) { animation-delay: 0.2s; }
        .colorful-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideUpFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Novas classes para a seção de pricing */
        .pricing-section {
            /* background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); */
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236366f1" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></svg>') repeat; */
            opacity: 0.4;
            z-index: 1;
        }

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

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

        .pricing-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .pricing-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin: 0;
        }

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

        .pricing-plan-card {
            background: var(--background);
            border-radius: 20px;
            padding: 1.25rem;
            position: relative;
            border: 2px solid var(--primary-light);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); */
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pricing-plan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(218, 218, 218, 0.12);
            border-color: var(--primary-dark)
        }

        /* Plano destacado (Basic Plan) */
        .pricing-plan-featured {
            background-image: url('../img/bg_dark.webp');
            color: white;
            border: 2px solid transparent;
            transform: scale(1.02);
        }

        .pricing-plan-featured:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 60px rgba(172, 172, 172, 0.25);
        }

        .pricing-plan-header {
            margin-bottom: 2rem;
        }

        .pricing-plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-plan-access {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .pricing-plan-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .pricing-plan-amount {
            font-size: 2.10rem;
            font-weight: 700;
            line-height: 1;
        }

        .pricing-plan-discount {
            font-size: 1rem;
            opacity: 0.7;
            font-weight: 500;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .pricing-title {
                font-size: 2.5rem;
            }
            
            .pricing-subtitle {
                font-size: 1.1rem;
            }
            
            .pricing-plan-card {
                padding: 2rem;
            }
            
            .pricing-plan-featured {
                transform: none;
            }
            
            .pricing-plan-featured:hover {
                transform: translateY(-8px);
            }
            
            .pricing-plan-amount {
                font-size: 3rem;
            }
        }

        @media (max-width: 480px) {
            .pricing-plan-card {
                padding: 1.5rem;
            }
            
            .pricing-title {
                font-size: 2rem;
            }
            
            .pricing-plan-amount {
                font-size: 2.5rem;
            }
        }

        /* ================================================
   CLASSES PARA ÍCONES À DIREITA DOS TÍTULOS
   ================================================ */

/* Container principal para o card com layout flexível */
.card-header-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Container para o conteúdo de texto (título + descrição) */
.card-content-text {
    flex: 1;
    min-width: 0; /* Permite que o texto seja truncado se necessário */
}

/* Container para o ícone */
.card-icon-right {
    flex-shrink: 0; /* Impede que o ícone seja comprimido */
    margin-left: auto;
}

/* Ajuste no ícone para remover margin-bottom quando estiver à direita */
.card-icon-right .icon-circle {
    margin-bottom: 0;
}

/* Título sem margin-bottom extra quando o ícone está à direita */
.card-title-with-icon {
    margin-bottom: 0.75rem;
}

/* Responsividade - em telas pequenas, volta ao layout original */
@media (max-width: 576px) {
    .card-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .card-icon-right {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .card-icon-right .icon-circle {
        margin-bottom: 1rem;
    }
}

/* Variação para cards com fundo escuro */
.card-header-flex.dark-variant .card-content-text {
    color: white;
}

/* Opcional: Animação suave no hover do card */
.carousel-card:hover .card-icon-right .icon-circle {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Novos */
.stats-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            width: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5e7eb;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
        }

        .stats-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .percentage {
            font-size: 3rem;
            font-weight: 700;
            color: var(--neutral-700);
            margin-bottom: 16px;
            letter-spacing: -1px;
            line-height: 1;
        }

        .title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .description {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.5;
            font-weight: 400;
        }

        .accent-dot {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 8px;
            height: 8px;
            background: var(--neutral-700);
            border-radius: 50%;
            opacity: 0.6;
        }

        @media (max-width: 480px) {
            .stats-card {
                padding: 24px;
                max-width: 320px;
            }
            
            .percentage {
                font-size: 2.5rem;
            }
            
            .title {
                font-size: 1.25rem;
            }
            
            .description {
                font-size: 0.9rem;
            }
        }

        /* Novo */
        .step-container {
            margin-bottom: 100px;
            position: relative;
        }

        .step-container:last-child {
            margin-bottom: 0;
        }

        .step-number {
            font-size: 8rem;
            font-weight: 900;
            color: #2563eb;
            line-height: 1;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(37, 99, 235, 0.1);
        }

        .step-label {
            font-size: 0.9rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .step-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .step-description {
            font-size: 1.1rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .permanent-link {
            color: #2563eb;
            text-decoration: underline;
            font-weight: 500;
        }

        .illustration {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            object-fit: contain;
        }

        .step-arrow {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -50px;
            font-size: 2rem;
            color: #3b82f6;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .monitor-frame {
            background: #374151;
            border-radius: 8px;
            padding: 8px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .monitor-screen {
            background: white;
            border-radius: 4px;
            padding: 15px;
            width: 200px;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .cursor-pointer {
            width: 0;
            height: 0;
            border-left: 12px solid #ef4444;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            display: inline-block;
            margin-left: 10px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            background: #fbbf24;
            border-radius: 50%;
            margin: 0 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .phone-icon {
            background: #374151;
            color: white;
            border-radius: 12px;
            padding: 15px;
            margin: 0 10px;
        }

        @media (max-width: 768px) {
            .step-number {
                font-size: 6rem;
            }
            
            .step-title {
                font-size: 1.8rem;
            }
            
            .illustration {
                height: 250px;
            }
            
            .process-section {
                padding: 60px 0;
            }
            
            .step-container {
                margin-bottom: 80px;
            }
        }

        /* Novo */
        .affiliate-section {
            background: #fff;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }
        
        .affiliate-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
            clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .dotted-pattern {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(circle, #ff6b6b 2px, transparent 2px);
            background-size: 15px 15px;
            opacity: 0.3;
        }
        
        .avatar-group {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid white;
            margin-right: -10px;
            background-size: cover;
            background-position: center;
        }
        
        .avatar:nth-child(1) { background-color: #e11d48; }
        .avatar:nth-child(2) { background-color: #6366f1; }
        .avatar:nth-child(3) { background-color: #facc15; }
        .avatar:nth-child(4) { background-color: #10b981; }
        
        .earn-text {
            font-size: 0.9rem;
            color: #666;
            /* margin-left: 15px; */
        }
        
        .earn-amount {
            color: #28a745;
            font-weight: bold;
        }
        
        .program-heading {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        .program-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .action-btn {
            padding: 12px 30px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin-right: 15px;
            margin-bottom: 10px;
            display: inline-block;
        }
        
        .action-btn-outline {
            color: #333;
            border: 2px solid #333;
            background: transparent;
        }
        
        .action-btn-outline:hover {
            background: #333;
            color: white;
        }
        
        .action-btn-filled {
            background: #333;
            color: white;
            border: 2px solid #333;
        }
        
        .action-btn-filled:hover {
            background: #555;
            border-color: #555;
        }
        
        .affiliate-image {
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 10;
        }
        
        .social-icons {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 20;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6f42c1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: white;
            transform: scale(1.1);
            color: #6f42c1;
        }
        
        @media (max-width: 768px) {
            .affiliate-section::before {
                width: 100%;
                clip-path: none;
            }
            
            .program-heading {
                font-size: 2.5rem;
            }
            
            .social-icons {
                position: static;
                transform: none;
                flex-direction: row;
                justify-content: center;
                margin-top: 20px;
            }
        }

        /* ================================================
   RESPONSIVE DESIGN - 3 BREAKPOINTS SYSTEM
   Desktop (1200px+) | Tablet (768px-1199px) | Mobile (0px-767px)
   ================================================ */

/* ================================================
   BASE RESPONSIVE CLASSES
   ================================================ */

/* Section Spacing - Responsive */
.section-spacing {
    padding: 4rem 0; /* Desktop: 64px */
}

/* Section Headers */
.section-header {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem; /* Desktop: 40px */
    line-height: 1.1;
}

.section-description {
    font-size: 1.25rem; /* Desktop: 20px */
    line-height: 1.6;
    max-width: 1400px;
}

/* Margin Bottom for Sections */
.mb-section {
    margin-bottom: 3.5rem; /* Desktop: 56px */
}

.mt-section {
    margin-top: 3.5rem; /* Desktop: 56px */
}

/* Cards Grid Spacing */
.cards-grid {
    --bs-gutter-x: 1.5rem; /* Desktop: 24px */
    --bs-gutter-y: 1.5rem;
}

.cards-grid-services {
    --bs-gutter-x: 1.25rem; /* Desktop: 20px */
    --bs-gutter-y: 1.25rem;
}

/* Card Padding */
.p-card {
    padding: 2rem; /* Desktop: 32px */
}

/* Icon Containers */
.icon-container {
    width: 64px;
    height: 64px;
}

.icon-container-sm {
    width: 56px;
    height: 56px;
}

.icon-size {
    font-size: 1.5rem; /* Desktop: 24px */
}

.icon-size-sm {
    font-size: 1.25rem; /* Desktop: 20px */
}

/* ================================================
   HERO SECTION RESPONSIVE
   ================================================ */

.hero-title {
    font-size: 4rem; /* Desktop: 64px */
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem; /* Desktop: 20px */
    max-width: 800px;
    line-height: 1.6;
}

.hero-buttons {
    gap: 1rem;
}

/* ================================================
   SERVICES SECTION RESPONSIVE
   ================================================ */

.services-bg {
    background: linear-gradient(180deg, #ffffff 0%, #6474880D 100%);
}

.services-layout {
    --bs-gutter-x: 3rem; /* Desktop: 48px */
    --bs-gutter-y: 3rem;
}

.services-subtitle {
    font-size: 2rem; /* Desktop: 32px */
    line-height: 1.2;
}

.service-card-title {
    font-size: 1.125rem; /* Desktop: 18px */
}

.service-card-text {
    font-size: 0.95rem; /* Desktop: 15px */
}

/* ================================================
   HOW IT WORKS SECTION RESPONSIVE
   ================================================ */

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Desktop: 64px */
}

.step-item {
    width: 100%;
}

.g-steps {
    --bs-gutter-x: 3rem; /* Desktop: 48px */
    --bs-gutter-y: 2rem;
}

.step-number {
    font-size: 6rem; /* Desktop: 96px */
    font-weight: 900;
    line-height: 1;
}

.step-badge {
    font-size: 0.875rem;
}

.step-title {
    font-size: 2rem; /* Desktop: 32px */
    line-height: 1.2;
}

.step-description {
    font-size: 1.125rem; /* Desktop: 18px */
}

.step-image {
    height: 400px;
    object-fit: contain;
    width: 100%;
}

/* ================================================
   ADVANTAGES SECTION RESPONSIVE
   ================================================ */

.advantage-title {
    font-size: 1.125rem; /* Desktop: 18px */
}

.advantage-text {
    font-size: 0.95rem; /* Desktop: 15px */
}

/* ================================================
   CTA SECTION RESPONSIVE
   ================================================ */

.cta-title {
    font-size: 1.125rem; /* Desktop: 18px */
}

.cta-text {
    font-size: 0.95rem; /* Desktop: 15px */
}

/* ================================================
   FAQ SECTION RESPONSIVE
   ================================================ */

.faq-button {
    font-size: 1rem; /* Desktop: 16px */
    padding: 1.5rem 1.5rem;
}

.faq-answer {
    font-size: 0.95rem; /* Desktop: 15px */
}

.faq-cta-text {
    font-size: 1.125rem; /* Desktop: 18px */
}

/* ================================================
   TABLET RESPONSIVE (768px - 1199px)
   ================================================ */

@media (min-width: 768px) and (max-width: 1199.98px) {
    
    /* Section Spacing */
    .section-spacing {
        padding: 3.5rem 0; /* Tablet: 56px */
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2.25rem; /* Tablet: 36px */
    }
    
    .section-description {
        font-size: 1.125rem; /* Tablet: 18px */
    }
    
    .mb-section {
        margin-bottom: 3rem; /* Tablet: 48px */
    }
    
    .mt-section {
        margin-top: 3rem; /* Tablet: 48px */
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 3.5rem; /* Tablet: 56px */
    }
    
    .hero-subtitle {
        font-size: 1.125rem; /* Tablet: 18px */
        max-width: 700px;
    }
    
    /* Cards */
    .p-card {
        padding: 1.75rem; /* Tablet: 28px */
    }
    
    .cards-grid {
        --bs-gutter-x: 1.25rem; /* Tablet: 20px */
        --bs-gutter-y: 1.25rem;
    }
    
    /* Icons */
    .icon-container {
        width: 56px;
        height: 56px;
    }
    
    .icon-container-sm {
        width: 48px;
        height: 48px;
    }
    
    .icon-size {
        font-size: 1.25rem; /* Tablet: 20px */
    }
    
    .icon-size-sm {
        font-size: 1.125rem; /* Tablet: 18px */
    }
    
    /* Services Section */
    .services-layout {
        --bs-gutter-x: 2.5rem; /* Tablet: 40px */
        --bs-gutter-y: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.75rem; /* Tablet: 28px */
    }
    
    .service-card-title {
        font-size: 1rem; /* Tablet: 16px */
    }
    
    .service-card-text {
        font-size: 0.875rem; /* Tablet: 14px */
    }
    
    /* How it Works */
    .steps-container {
        gap: 3.5rem; /* Tablet: 56px */
    }
    
    .g-steps {
        --bs-gutter-x: 2.5rem; /* Tablet: 40px */
        --bs-gutter-y: 1.5rem;
    }
    
    .step-number {
        font-size: 5rem; /* Tablet: 80px */
    }
    
    .step-title {
        font-size: 1.75rem; /* Tablet: 28px */
    }
    
    .step-description {
        font-size: 1rem; /* Tablet: 16px */
    }
    
    .step-image {
        height: 350px;
    }
    
    /* Advantages */
    .advantage-title {
        font-size: 1rem; /* Tablet: 16px */
    }
    
    .advantage-text {
        font-size: 0.875rem; /* Tablet: 14px */
    }
    
    /* CTA */
    .cta-title {
        font-size: 1rem; /* Tablet: 16px */
    }
    
    .cta-text {
        font-size: 0.875rem; /* Tablet: 14px */
    }
    
    /* FAQ */
    .faq-button {
        font-size: 0.95rem; /* Tablet: 15px */
        padding: 1.25rem 1.25rem;
    }
    
    .faq-answer {
        font-size: 0.875rem; /* Tablet: 14px */
    }
    
    .faq-cta-text {
        font-size: 1rem; /* Tablet: 16px */
    }
}

/* ================================================
   MOBILE RESPONSIVE (0px - 767px)
   ================================================ */

@media (max-width: 767.98px) {
    
    /* Section Spacing */
    .section-spacing {
        padding: 2.5rem 0; /* Mobile: 40px */
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.875rem; /* Mobile: 30px */
    }
    
    .section-description {
        font-size: 1rem; /* Mobile: 16px */
    }
    
    .mb-section {
        margin-bottom: 2.5rem; /* Mobile: 40px */
    }
    
    .mt-section {
        margin-top: 2.5rem; /* Mobile: 40px */
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem; /* Mobile: 40px */
    }
    
    .hero-subtitle {
        font-size: 1rem; /* Mobile: 16px */
        max-width: none;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    /* Cards */
    .p-card {
        padding: 1.5rem; /* Mobile: 24px */
    }
    
    .cards-grid {
        --bs-gutter-x: 1rem; /* Mobile: 16px */
        --bs-gutter-y: 1rem;
    }
    
    /* Icons */
    .icon-container {
        width: 48px;
        height: 48px;
    }
    
    .icon-container-sm {
        width: 40px;
        height: 40px;
    }
    
    .icon-size {
        font-size: 1.125rem; /* Mobile: 18px */
    }
    
    .icon-size-sm {
        font-size: 1rem; /* Mobile: 16px */
    }
    
    /* Services Section */
    .services-layout {
        --bs-gutter-x: 2rem; /* Mobile: 32px */
        --bs-gutter-y: 2rem;
    }
    
    .services-content-col {
        text-align: left; /* Alterado de center para left */
        margin-bottom: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.5rem; /* Mobile: 24px */
    }
    
    .service-card-title {
        font-size: 0.95rem; /* Mobile: 15px */
    }
    
    .service-card-text {
        font-size: 0.8rem; /* Mobile: 13px */
    }
    
    /* How it Works */
    .steps-container {
        gap: 3rem; /* Mobile: 48px */
    }
    
    .g-steps {
        --bs-gutter-x: 2rem; /* Mobile: 32px */
        --bs-gutter-y: 1.5rem;
    }
    
    .step-content-col {
        text-align: left; /* Alterado de center para left */
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        font-size: 4rem; /* Mobile: 64px */
    }
    
    .step-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .step-title {
        font-size: 1.5rem; /* Mobile: 24px */
    }
    
    .step-description {
        font-size: 0.95rem; /* Mobile: 15px */
    }
    
    .step-image {
        height: 280px;
    }
    
    /* Advantages */
    .advantage-title {
        font-size: 0.95rem; /* Mobile: 15px */
    }
    
    .advantage-text {
        font-size: 0.8rem; /* Mobile: 13px */
    }
    
    /* CTA */
    .cta-title {
        font-size: 0.95rem; /* Mobile: 15px */
    }
    
    .cta-text {
        font-size: 0.8rem; /* Mobile: 13px */
    }
    
    /* FAQ */
    .faq-button {
        font-size: 0.875rem; /* Mobile: 14px */
        padding: 1rem 1rem;
    }
    
    .faq-answer {
        font-size: 0.8rem; /* Mobile: 13px */
    }
    
    .faq-cta-text {
        font-size: 0.95rem; /* Mobile: 15px */
    }
    
    .faq-buttons {
        gap: 0.75rem;
    }
    
    /* Buttons Mobile */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Portfolio Carousel Mobile */
    .portfolio-carousel {
        margin: 0 -1rem;
    }
    
    /* Portfolio Item Mobile */
    .portfolio-item {
        height: 280px;
    }
    
    .portfolio-item h2 {
        font-size: 1.125rem;
    }
    
    .portfolio-item p {
        font-size: 0.8rem;
    }
}

/* ================================================
   SPECIFIC COMPONENT ADJUSTMENTS
   ================================================ */

/* Card Hover Effects - Responsive */

.feature-card,
.service-card,
.advantage-card,
.cta-card {
    transition: all 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.advantage-card:hover,
.cta-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Button Responsive Adjustments */
@media (max-width: 767.98px) {
    .btn {
        width: 100%;
    }
    
    .hero-buttons .btn,
    .faq-buttons .btn {
        width: auto;
        min-width: 140px;
    }
}

/* Portfolio Carousel Responsive */
.cta {
    height: 450px; /* Desktop - aumentado de 320px para 450px */
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .cta {
        height: 380px; /* Tablet - aumentado de 300px para 380px */
    }
}

@media (max-width: 767.98px) {
    .cta {
        height: 320px; /* Mobile - aumentado de 280px para 320px */
    }
}

/* Splide Pagination Mobile */
@media (max-width: 767.98px) {
    .splide__pagination {
        margin-top: 1rem !important;
    }
    
    .splide__pagination__page {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
}

/* Services Layout Mobile Stack */
@media (max-width: 991.98px) {
    .services-layout {
        flex-direction: column;
    }
    
    .services-content-col {
        order: 1;
        text-align: left; /* Alterado de center para left */
        margin-bottom: 2rem;
    }
    
    .services-cards-col {
        order: 2;
    }
}

/* Step Image Container */
.step-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .step-image-col {
        margin-bottom: 1.5rem;
    }
}

/* Utility Classes for Better Mobile UX */
@media (max-width: 767.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .mb-mobile-2 {
        margin-bottom: 1rem !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1.5rem !important;
    }
    
    .px-mobile-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* ================================================
   AFFILIATE SECTION - RESPONSIVE DESIGN
   Desktop (1200px+) | Tablet (768px-1199px) | Mobile (0px-767px)
   ================================================ */

/* ================================================
   DESKTOP STYLES (DEFAULT)
   ================================================ */

.affiliate-section {
    background: #fff;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    /* padding: 4rem 0; */
}

.affiliate-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.affiliate-row {
    position: relative;
    z-index: 2;
}

.dotted-pattern {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #ff6b6b 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

/* Content Styling */
.affiliate-badge {
    margin-bottom: 1.5rem;
}

.affiliate-earn-text {
    font-size: 1rem; /* Desktop: 16px */
    color: #666;
    font-weight: 500;
}

.affiliate-title {
    font-size: 3.5rem; /* Desktop: 56px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.affiliate-description {
    font-size: 1.125rem; /* Desktop: 18px */
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.affiliate-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.affiliate-buttons .action-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    min-width: 140px;
    justify-content: center;
}

.action-btn-outline {
    color: #333;
    border-color: #333;
    background: transparent;
}

.action-btn-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-btn-filled {
    background: #333;
    color: white;
    border-color: #333;
}

.action-btn-filled:hover {
    background: #555;
    border-color: #555;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Image Styling */
.affiliate-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliate-image {
    max-width: 100%;
    height: auto;
    max-height: 500px; /* Desktop */
    position: relative;
    z-index: 10;
}

/* ================================================
   TABLET RESPONSIVE (768px - 1199px)
   ================================================ */

@media (min-width: 768px) and (max-width: 1199.98px) {
    
    .affiliate-section {
        padding: 3.5rem 0; /* Tablet: 56px */
        min-height: 450px;
    }
    
    .affiliate-section::before {
        width: 35%;
        clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .dotted-pattern {
        width: 80px;
        height: 80px;
        background-size: 12px 12px;
    }
    
    .affiliate-earn-text {
        font-size: 0.95rem; /* Tablet: 15px */
    }
    
    .affiliate-title {
        font-size: 2.75rem; /* Tablet: 44px */
        margin-bottom: 1.25rem;
    }
    
    .affiliate-description {
        font-size: 1rem; /* Tablet: 16px */
        margin-bottom: 1.75rem;
        max-width: 95%;
    }
    
    .affiliate-buttons {
        gap: 0.75rem;
    }
    
    .affiliate-buttons .action-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.95rem;
        min-width: 120px;
    }
    
    .affiliate-image {
        max-height: 300px; /* Tablet */
    }
}

/* ================================================
   MOBILE RESPONSIVE (0px - 767px)
   ================================================ */

@media (max-width: 767.98px) {
    
    .affiliate-section {
        padding: 2.5rem 0; /* Mobile: 40px */
        min-height: auto;
    }
    
    .affiliate-section::before {
        display: none; /* Remove background shape on mobile */
    }
    
    .affiliate-row {
        flex-direction: column;
        text-align: center;
    }
    
    .affiliate-content-col {
        order: 2;
        text-align: center;
        padding: 0 1rem;
    }
    
    .affiliate-image-col {
        order: 1;
        margin-bottom: 2rem;
        display: none; /* Oculta a imagem no mobile */
    }
    
    .dotted-pattern {
        display: none; /* Hide decorative pattern on mobile */
    }
    
    .affiliate-badge {
        margin-bottom: 1rem;
    }
    
    .affiliate-earn-text {
        font-size: 0.875rem; /* Mobile: 14px */
    }
    
    .affiliate-title {
        font-size: 2rem; /* Mobile: 32px */
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .affiliate-description {
        font-size: 0.95rem; /* Mobile: 15px */
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .affiliate-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .affiliate-buttons .action-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .affiliate-image {
        max-height: 220px; /* Mobile */
        width: auto;
    }
}

/* ================================================
   ADDITIONAL RESPONSIVE UTILITIES
   ================================================ */

/* Small Mobile Screens (480px and below) */
@media (max-width: 479.98px) {
    
    .affiliate-section {
        padding: 2rem 0;
    }
    
    .affiliate-content-col {
        padding: 0 0.5rem;
    }
    
    .affiliate-title {
        font-size: 1.75rem; /* Small Mobile: 28px */
    }
    
    .affiliate-description {
        font-size: 0.875rem; /* Small Mobile: 14px */
    }
    
    .affiliate-buttons .action-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        max-width: 260px;
    }
    
    .affiliate-image {
        max-height: 180px;
    }
}

/* ================================================
   ACCESSIBILITY & INTERACTION IMPROVEMENTS
   ================================================ */

/* Focus states for better accessibility */
.action-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Loading states and transitions */
.affiliate-image {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.affiliate-image:hover {
    transform: scale(1.02);
}

/* Better button hover on touch devices */
@media (hover: hover) {
    .action-btn:hover {
        transform: translateY(-2px);
    }
}

@media (hover: none) {
    .action-btn:active {
        transform: scale(0.98);
    }
}

/* Ensure text remains readable on all backgrounds */
.affiliate-content-col {
    position: relative;
    z-index: 3;
    padding: 24px;
}

/* ================================================
   ANIMATION ENHANCEMENTS
   ================================================ */

/* Custom animations for affiliate section */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Apply animations for better visual flow */
.affiliate-content-col > * {
    animation-fill-mode: both;
}

/* Stagger animation delays for smoother appearance */
.affiliate-badge { animation-delay: 0.1s; }
.affiliate-title { animation-delay: 0.2s; }
.affiliate-description { animation-delay: 0.3s; }
.affiliate-buttons { animation-delay: 0.4s; }

/* ================================================
   AFILIADO.CTP - RESPONSIVE DESIGN
   Desktop (1200px+) | Tablet (768px-1199px) | Mobile (0px-767px)
   ================================================ */

/* ================================================
   HERO BANNER SECTION
   ================================================ */

.affiliate-hero-banner {
    top: 0 !important;
    background: white;
    color: #333;
    padding: 3rem 0; /* Desktop: 48px - reduzido de 64px */
    min-height: 80vh; /* Reduzido de 100vh para 80vh */
    display: flex;
    align-items: center;
    position: relative;
}

.affiliate-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.affiliate-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Desktop: 48px - reduzido de 64px */
    align-items: center;
    position: relative;
    z-index: 2;
}

.affiliate-hero-left {
    animation: slideInLeft 1s ease-out;
}

.affiliate-hero-right {
    text-align: center;
    animation: slideInRight 1s ease-out;
}

.affiliate-hero-title {
    font-size: 3.5rem; /* Desktop: 56px */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.affiliate-hero-subtitle {
    font-size: 1.3rem; /* Desktop: 21px */
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.5;
    color: #666;
}

.affiliate-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.home-hero-see-templates,
.affiliate-view-more-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.affiliate-view-more-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.affiliate-hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.affiliate-hero-image:hover {
    transform: scale(1.05);
}

/* ================================================
   STEPS SECTION
   ================================================ */

.affiliate-steps-section {
    background-color: #ffffff;
    position: relative;
    overflow: visible;
}

/* Container principal dos steps */
.affiliate-steps-container {
    position: relative;
}

.affiliate-step-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.affiliate-step-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 314px; /* Altura mínima definida conforme o card maior */
    transition: all 0.3s ease;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribui conteúdo uniformemente */
    z-index: 2;
}

.affiliate-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.affiliate-step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 1.5rem;
    display: block;
    flex-shrink: 0; /* Não permite que o número diminua */
}

.affiliate-step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    flex-shrink: 0; /* Não permite que o título diminua */
}

.affiliate-step-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1; /* Permite que a descrição cresça para preencher o espaço */
    display: flex;
    align-items: center; /* Centraliza verticalmente o texto */
}

/* Setas conectoras - Ajustes específicos conforme solicitado */
.affiliate-arrow-connector {
    position: absolute;
    top: 50%;
    right: -75px; /* Conforme solicitado */
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #363636;
    z-index: 5;
    /* Removido: background, border-radius, width, height, box-shadow, border */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove seta do último card */
.affiliate-step-wrapper:last-child .affiliate-arrow-connector {
    display: none;
}

/* Ajuste específico para desktop - garante que as setas fiquem visíveis */
@media (min-width: 1200px) {
    .affiliate-steps-section .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .affiliate-steps-section .col-lg-4 {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Para telas grandes onde as setas podem sair da viewport */
@media (min-width: 992px) {
    .affiliate-arrow-connector {
        right: -45px;
        left: auto;
        margin-left: 0;
    }
}

/* ================================================
   PARTNERSHIP SECTION
   ================================================ */

.affiliate-partnership-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.affiliate-content-wrapper {
    position: relative;
    z-index: 2;
}

.affiliate-commission-badge {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.affiliate-partnership-title {
    font-size: 3rem; /* Desktop: 48px */
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.affiliate-partnership-description {
    font-size: 1.2rem; /* Desktop: 19px */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.affiliate-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-info-title {
    font-size: 2.5rem; /* Desktop: 40px */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 2rem;
}

.affiliate-info-step {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.affiliate-info-step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4facfe;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.affiliate-info-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

/* Calculator */
.affiliate-calculator-section {
    margin-top: 3rem;
}

.affiliate-calculator-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-align: center;
}

.affiliate-commission-result {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #155724;
    text-align: center;
}

.affiliate-percentage-info {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-top: 0.75rem;
}

/* ================================================
   FAQ SECTION
   ================================================ */

.affiliate-faq-accordion {
    /* Herda estilos globais do accordion */
}

.affiliate-faq-item {
    /* Herda estilos globais do accordion-item */
}

.affiliate-faq-button {
    /* Herda estilos globais do accordion-button */
}

.affiliate-faq-answer {
    /* Herda estilos globais do accordion-body */
}

.affiliate-faq-cta-text {
    font-size: 1.125rem;
}

.affiliate-faq-buttons {
    /* Herda estilos globais dos botões */
}

/* ================================================
   FINAL SECTION
   ================================================ */

.affiliate-final-section {
    background: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.affiliate-final-content {
    position: relative;
    z-index: 2;
}

.affiliate-final-title {
    font-size: 3.5rem; /* Desktop: 56px */
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.affiliate-final-subtitle {
    font-size: 1.2rem; /* Desktop: 19px */
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.affiliate-register-button {
    background: #e11d48;
    color: white;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.affiliate-register-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    color: white;
}

.affiliate-final-description {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.home-visual-element,
.affiliate-visual-element {
    position: absolute;
}

.home-visual-element {
    z-index: -1;
}

.home-element-left {
    width: 300px;
    height: 200px;
    top: 30%;
    left: 10%;
    transform: rotate(-10deg);
}

.home-element-right {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 10%;
    transform: rotate(15deg);
}

.affiliate-element-left {
    width: 300px;
    height: 200px;
    top: 10%;
    left: 5%;
    transform: rotate(-10deg);
}

.affiliate-element-right {
    width: 300px;
    height: 200px;
    bottom: 20%;
    right: 5%;
    transform: rotate(15deg);
}

.affiliate-user-badge {
    position: absolute;
    background: #e11d48;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.affiliate-badge-mark {
    top: 15%;
    right: 20%;
}

.affiliate-badge-anna {
    bottom: 25%;
    left: 10%;
}

.affiliate-badge-elena {
    bottom: 50%;
    right: 8%;
}

/* ================================================
   TABLET RESPONSIVE (768px - 1199px)
   ================================================ */

@media (min-width: 768px) and (max-width: 1199.98px) {
    
    /* Hero Banner */
    .affiliate-hero-banner {
        padding: 2.5rem 0; /* Tablet: 40px - reduzido de 56px */
        min-height: 70vh; /* Reduzido para tablet */
        top: 40px !important;
    }
    
    .affiliate-hero-content {
        gap: 2.5rem; /* Tablet: 40px - reduzido */
    }
    
    .affiliate-hero-title {
        font-size: 2.75rem;
    }
    
    .affiliate-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .affiliate-hero-image {
        max-width: 400px;
    }
    
    /* Steps */
    .affiliate-step-card {
        padding: 1.75rem 1.25rem;
        min-height: 280px; /* Altura reduzida para tablet */
    }
    
    .affiliate-step-number {
        font-size: 2.5rem;
    }
    
    .affiliate-arrow-connector {
        right: -65px; /* Ajustado para tablet */
        font-size: 2rem;
    }
    
    .affiliate-steps-section .col-lg-4 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .affiliate-step-title {
        font-size: 1.25rem;
    }
    
    .affiliate-step-description {
        font-size: 0.95rem;
    }
    
    /* Partnership */
    .affiliate-partnership-title {
        font-size: 2.5rem;
    }
    
    .affiliate-partnership-description {
        font-size: 1.1rem;
    }
    
    .affiliate-info-card {
        padding: 2rem;
    }
    
    .affiliate-info-title {
        font-size: 2rem;
    }
    
    .affiliate-info-step-number {
        font-size: 1.25rem;
    }
    
    .affiliate-info-step-title {
        font-size: 1rem;
    }
    
    .affiliate-calculator-title {
        font-size: 1.1rem;
    }
    
    /* Final Section */
    .affiliate-final-title {
        font-size: 2.75rem;
    }
    
    .affiliate-final-subtitle {
        font-size: 1.1rem;
    }
    
    .affiliate-visual-element {
        width: 250px;
        height: 160px;
    }
}

/* ================================================
   MOBILE RESPONSIVE (0px - 767px)
   ================================================ */

@media (max-width: 767.98px) {
    
    /* Hero Banner */
    .affiliate-hero-banner {
        padding: 2.5rem 0;
        min-height: auto;
        top: 40px !important; /* Ajuste para mobile */
    }
    
    .affiliate-hero-banner::before {
        display: none;
    }
    
    .affiliate-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .affiliate-hero-left {
        order: 2;
    }
    
    .affiliate-hero-right {
        order: 1;
        display: none; /* Oculta imagem no mobile */
    }
    
    .affiliate-hero-title {
        font-size: 2.5rem;
    }
    
    .affiliate-hero-subtitle {
        font-size: 1rem;
    }
    
    .affiliate-hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .affiliate-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .affiliate-view-more-btn {
        font-size: 1rem;
    }
    
    /* Steps */
    .affiliate-arrow-connector {
        display: none !important;
    }
    
    .affiliate-step-wrapper {
        margin-bottom: 0;
    }
    
    .affiliate-step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        min-height: 240px; /* Altura reduzida para mobile */
    }
    
    /* Garante espaçamento adequado em mobile */
    .affiliate-steps-section .col-lg-4 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 1rem;
    }
    
    .affiliate-step-number {
        font-size: 2rem;
    }
    
    .affiliate-step-title {
        font-size: 1.1rem;
    }
    
    .affiliate-step-description {
        font-size: 0.9rem;
    }
    
    /* Partnership */
    .affiliate-partnership-section {
        padding: 2.5rem 0;
    }
    
    .affiliate-partnership-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .affiliate-partnership-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .affiliate-commission-badge {
        display: block;
        text-align: center;
        margin: 0 auto 1.5rem;
    }
    
    .affiliate-left-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .affiliate-info-card {
        padding: 1.5rem;
    }
    
    .affiliate-info-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .affiliate-info-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .affiliate-info-step-number {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .affiliate-info-step-title {
        font-size: 0.95rem;
    }
    
    .affiliate-calculator-title {
        font-size: 1rem;
    }
    
    /* FAQ */
    .affiliate-faq-cta-text {
        font-size: 1rem;
    }
    
    .affiliate-faq-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .affiliate-faq-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Final Section */
    .affiliate-final-section {
        padding: 2.5rem 0;
        min-height: auto;
    }
    
    .affiliate-final-title {
        font-size: 2rem;
    }
    
    .affiliate-final-subtitle {
        font-size: 1rem;
    }
    
    .affiliate-register-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .affiliate-visual-element {
        display: none;
    }
    
    .affiliate-user-badge {
        display: none;
    }
}

/* ================================================
   SMALL MOBILE (480px and below)
   ================================================ */

@media (max-width: 479.98px) {
    
    .affiliate-hero-title {
        font-size: 2rem;
    }
    
    .affiliate-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .affiliate-step-card {
        padding: 1.25rem 0.75rem;
    }
    
    .affiliate-step-number {
        font-size: 1.75rem;
    }
    
    .affiliate-step-title {
        font-size: 1rem;
    }
    
    .affiliate-step-description {
        font-size: 0.85rem;
    }
    
    .affiliate-partnership-title {
        font-size: 1.75rem;
    }
    
    .affiliate-partnership-description {
        font-size: 0.95rem;
    }
    
    .affiliate-info-card {
        padding: 1.25rem;
    }
    
    .affiliate-info-title {
        font-size: 1.5rem;
    }
    
    .affiliate-info-step-title {
        font-size: 0.9rem;
    }
    
    .affiliate-final-title {
        font-size: 1.75rem;
    }
    
    .affiliate-final-subtitle {
        font-size: 0.95rem;
    }
    
    .affiliate-register-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ================================================
   ANIMATIONS KEYFRAMES
   ================================================ */

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

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

/* ================================================
   ACCESSIBILITY & INTERACTION IMPROVEMENTS
   ================================================ */

/* Focus states */
.affiliate-register-button:focus,
.affiliate-view-more-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Better hover effects on touch devices */
@media (hover: hover) {
    .affiliate-step-card:hover {
        transform: translateY(-8px);
    }
    
    .affiliate-register-button:hover {
        transform: translateY(-2px);
    }
}

@media (hover: none) {
    .affiliate-step-card:active {
        transform: scale(0.98);
    }
    
    .affiliate-register-button:active {
        transform: scale(0.98);
    }
}

/* ================================================
   UTILITY CLASSES ESPECÍFICAS
   ================================================ */

/* Spacing utilities específicos para afiliados */
.affiliate-mb-section {
    margin-bottom: 3.5rem;
}

.affiliate-mt-section {
    margin-top: 3.5rem;
}

@media (max-width: 767.98px) {
    .affiliate-mb-section {
        margin-bottom: 2.5rem;
    }
    
    .affiliate-mt-section {
        margin-top: 2.5rem;
    }
}

/* Text utilities específicos */
.affiliate-text-center-mobile {
    text-align: left;
}

@media (max-width: 767.98px) {
    .affiliate-text-center-mobile {
        text-align: center !important;
    }
}

/* Button utilities específicos */
.affiliate-btn-responsive {
    display: inline-block;
}

@media (max-width: 767.98px) {
    .affiliate-btn-responsive {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ================================================
   SERVICOS.CTP - RESPONSIVE DESIGN
   Desktop (1200px+) | Tablet (768px-1199px) | Mobile (0px-767px)
   ================================================ */

/* ================================================
   HERO SECTION
   ================================================ */

.services-hero-section {
    padding: 4rem 0; /* Desktop: 64px */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.services-hero-content {
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: space-between;
}

.services-hero-text {
    flex-grow: 1;
}

.services-hero-cta {
    margin-top: auto;
}

.services-hero-title {
    font-size: 3.5rem; /* Desktop: 56px */
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.25rem; /* Desktop: 20px */
    line-height: 1.6;
}

.services-hero-image {
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    background-image: url('../img/hero_servicos.png');
    background-position: center;
    background-size: cover;
}

.services-hero-icon {
    font-size: 4rem;
}

/* Carousel Section */
.services-carousel-section {
    margin-top: 60px;
}

.services-section-header {
    text-align: center;
}

.services-section-subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.services-splide {
    /* Herda estilos globais do splide */
}

/* ================================================
   STATISTICS SECTION
   ================================================ */

.services-statistics-section {
    padding: 4rem 0;
}

.services-features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.services-features-header {
    padding-right: 2rem;
}

.services-stats-title {
    font-size: 2.5rem; /* Desktop: 40px */
    line-height: 1.2;
}

.services-stats-description {
    font-size: 1.25rem; /* Desktop: 20px */
    line-height: 1.6;
}

.services-cta-button {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.services-cta-button:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.services-features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.services-stats-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
    /* border: 1px solid #e5e7eb; */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.services-stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.services-accent-dot {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 8px;
    height: 8px;
    background: var(--neutral-700);
    border-radius: 50%;
    opacity: 0.6;
}

.services-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-700);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1;
}

.services-card-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 400;
}

/* ================================================
   PRESENCE SECTION
   ================================================ */

.services-presence-section {
    padding: 4rem 0;
}

.services-benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-illustration {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: contain;
}

.services-benefit-content {
    padding: 2rem 0;
}

.services-benefit-title {
    font-size: 2.5rem; /* Desktop: 40px */
    line-height: 1.2;
}

.services-benefit-description {
    font-size: 1.125rem; /* Desktop: 18px */
    line-height: 1.6;
}

/* ================================================
   ONLINE SECTION
   ================================================ */

.services-online-section {
    padding: 4rem 0;
}

.services-benefit-content-aligned {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.services-benefit-text-top,
.services-benefit-text-bottom {
    padding: 2rem 0;
}

/* ================================================
   BENEFITS GRID SECTION
   ================================================ */

.services-benefits-grid-section {
    background-image: url('../img/bg_dark.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
}

.services-feature-icon {
    width: 64px;
    height: 64px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.services-icon-size {
    font-size: 1.5rem;
}

.services-benefit-grid-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.services-benefit-grid-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.services-benefit-grid-small {
    font-size: 0.875rem;
}

/* ================================================
   FAQ SECTION
   ================================================ */

.services-faq-accordion {
    /* Herda estilos globais do accordion */
}

.services-faq-item {
    /* Herda estilos globais do accordion-item */
}

.services-faq-button {
    /* Herda estilos globais do accordion-button */
}

.services-faq-answer {
    /* Herda estilos globais do accordion-body */
}

.services-faq-cta-text {
    font-size: 1.125rem;
}

.services-faq-buttons {
    /* Herda estilos globais dos botões */
}

/* ================================================
   PRICING SECTION
   ================================================ */

.services-pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

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

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

.services-pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-pricing-card {
    background: var(--background);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 2px solid var(--primary-light);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(218, 218, 218, 0.12);
    border-color: var(--primary-dark);
}

.services-pricing-plan-featured {
    background-image: url('../img/bg_dark.webp');
    color: white;
    border: 2px solid transparent;
    transform: scale(1.02);
}

.services-pricing-plan-featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(172, 172, 172, 0.25);
}

.services-pricing-plan-header {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.services-pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.services-pricing-plan-access {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.services-pricing-plan-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.services-pricing-plan-amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.services-pricing-plan-discount {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 500;
}

.services-pricing-notes-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.services-pricing-notes-list {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================================
   TABLET RESPONSIVE (768px - 1199px)
   ================================================ */

@media (min-width: 768px) and (max-width: 1199.98px) {
    
    /* Hero Section */
    .services-hero-section {
        padding: 3.5rem 0;
    }
    
    .services-hero-title {
        font-size: 2.75rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .services-hero-content {
        height: 350px;
    }
    
    .services-hero-image {
        height: 350px;
    }
    
    .services-hero-icon {
        font-size: 3rem;
    }
    
    /* Statistics */
    .services-features-layout {
        gap: 2.5rem;
    }
    
    .services-features-header {
        padding-right: 1.5rem;
    }
    
    .services-stats-title {
        font-size: 2.25rem;
    }
    
    .services-stats-description {
        font-size: 1.125rem;
    }
    
    .services-features-cards {
        gap: 1.25rem;
    }
    
    .services-stats-card {
        padding: 1.75rem;
    }
    
    .services-percentage {
        font-size: 2.5rem;
    }
    
    .services-card-description {
        font-size: 0.95rem;
    }
    
    /* Benefits */
    .services-illustration {
        height: 350px;
    }
    
    .services-benefit-title {
        font-size: 2.25rem;
    }
    
    .services-benefit-description {
        font-size: 1rem;
    }
    
    .services-feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .services-icon-size {
        font-size: 1.25rem;
    }
    
    .services-benefit-grid-title {
        font-size: 1rem;
    }
    
    .services-benefit-grid-text {
        font-size: 0.95rem;
    }
    
    /* Pricing */
    .services-pricing-title {
        font-size: 2.5rem;
    }
    
    .services-pricing-subtitle {
        font-size: 1.125rem;
    }
    
    .services-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .services-pricing-card {
        padding: 1.75rem;
    }
    
    .services-pricing-plan-featured {
        transform: none;
    }
    
    .services-pricing-plan-featured:hover {
        transform: translateY(-8px);
    }
    
    .services-pricing-plan-amount {
        font-size: 2.25rem;
    }
}

/* ================================================
   MOBILE RESPONSIVE (0px - 767px)
   ================================================ */

@media (max-width: 767.98px) {
    
    /* Hero Section */
    .services-hero-section {
        padding: 2.5rem 0;
        min-height: auto;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .services-hero-content {
        height: auto;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .services-hero-text {
        margin-bottom: 2rem;
    }
    
    .services-hero-image {
        height: 250px;
        display: none; /* Oculta imagem no mobile */
    }
    
    .services-hero-icon {
        font-size: 2.5rem;
    }
    
    .services-carousel-section {
        margin-top: 40px;
    }
    
    /* Statistics */
    .services-features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-features-header {
        padding-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .services-stats-title {
        font-size: 2rem;
    }
    
    .services-stats-description {
        font-size: 1rem;
    }
    
    .services-features-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-stats-card {
        padding: 1.5rem;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .services-percentage {
        font-size: 2.5rem;
    }
    
    .services-card-description {
        font-size: 0.9rem;
    }
    
    /* Benefits */
    .services-presence-section,
    .services-online-section {
        padding: 2.5rem 0;
    }
    
    .services-illustration {
        height: 250px;
    }
    
    .services-benefit-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .services-benefit-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .services-benefit-content,
    .services-benefit-content-aligned {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .services-benefit-text-top,
    .services-benefit-text-bottom {
        padding: 1rem 0;
    }
    
    /* Benefits Grid */
    .services-benefits-grid-section {
        padding: 2.5rem 0;
    }
    
    .services-feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 1rem;
    }
    
    .services-icon-size {
        font-size: 1.125rem;
    }
    
    .services-benefit-grid-title {
        font-size: 1rem;
    }
    
    .services-benefit-grid-text {
        font-size: 0.9rem;
    }
    
    .services-benefit-grid-small {
        font-size: 0.8rem;
    }
    
    /* FAQ */
    .services-faq-cta-text {
        font-size: 1rem;
    }
    
    .services-faq-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .services-faq-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Pricing */
    .services-pricing-section {
        padding: 2.5rem 0;
    }
    
    .services-pricing-title {
        font-size: 2rem;
    }
    
    .services-pricing-subtitle {
        font-size: 1rem;
    }
    
    .services-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-pricing-card {
        padding: 1.5rem;
    }
    
    .services-pricing-plan-featured {
        transform: none;
    }
    
    .services-pricing-plan-featured:hover {
        transform: translateY(-8px);
    }
    
    .services-pricing-plan-amount {
        font-size: 2rem;
    }
    
    .services-pricing-plan-discount {
        font-size: 0.9rem;
    }
    
    .services-pricing-notes-title {
        font-size: 0.95rem;
    }
    
    .services-pricing-notes-list {
        font-size: 0.9rem;
    }
}

/* ================================================
   SMALL MOBILE (480px and below)
   ================================================ */

@media (max-width: 479.98px) {
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .services-hero-image {
        height: 200px;
    }
    
    .services-stats-title {
        font-size: 1.75rem;
    }
    
    .services-stats-description {
        font-size: 0.95rem;
    }
    
    .services-stats-card {
        padding: 1.25rem;
        max-width: 280px;
    }
    
    .services-percentage {
        font-size: 2rem;
    }
    
    .services-card-description {
        font-size: 0.85rem;
    }
    
    .services-illustration {
        height: 200px;
    }
    
    .services-benefit-title {
        font-size: 1.5rem;
    }
    
    .services-benefit-description {
        font-size: 0.9rem;
    }
    
    .services-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .services-icon-size {
        font-size: 1rem;
    }
    
    .services-benefit-grid-title {
        font-size: 0.95rem;
    }
    
    .services-benefit-grid-text {
        font-size: 0.85rem;
    }
    
    .services-pricing-title {
        font-size: 1.75rem;
    }
    
    .services-pricing-card {
        padding: 1.25rem;
    }
    
    .services-pricing-plan-amount {
        font-size: 1.75rem;
    }
}

/* ================================================
   UTILITY CLASSES ESPECÍFICAS
   ================================================ */

/* Spacing utilities específicos para serviços */
.services-mb-section {
    margin-bottom: 3.5rem;
}

.services-mt-section {
    margin-top: 3.5rem;
}

@media (max-width: 767.98px) {
    .services-mb-section {
        margin-bottom: 2.5rem;
    }
    
    .services-mt-section {
        margin-top: 2.5rem;
    }
}

/* Text utilities específicos */
.services-text-center-mobile {
    text-align: left;
}

@media (max-width: 767.98px) {
    .services-text-center-mobile {
        text-align: center !important;
    }
}

/* Button utilities específicos */
.services-btn-responsive {
    display: inline-block;
}

@media (max-width: 767.98px) {
    .services-btn-responsive {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Novo */
/* ================================================
   NAVBAR SOBREPOSTA - ADICIONAIS AO STYLE.CSS
   ================================================ */

/* Navbar positioning - MUDANÇA PRINCIPAL */
.navbar-sticky {
    position: fixed; /* Mudou de sticky para fixed */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030; /* Aumentei o z-index para garantir que fique sobre outros elementos */
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Navbar com fundo transparente por padrão */
.navbar {
    /* border-bottom: 1px solid transparent; */
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(16px);
   /* background: rgba(255, 255, 255, 0.1) !important;*/ /* Fundo semi-transparente por padrão */
}

/* Navbar transparente na hero section */
.navbar.navbar-transparent {
    /* background: rgba(255, 255, 255, 0.05) !important; */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    box-shadow: none;
}

/* Navbar com fundo sólido quando não está na hero */
.navbar.navbar-solid {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Ajustar o conteúdo da hero para não ficar atrás da navbar */
.hero-container {
    padding-top: 100px; /* Espaço para a navbar - ajuste conforme necessário */
    z-index: 10;
    margin: auto 0;
}

/* Estilos para links da navbar quando transparente */
.navbar.navbar-transparent .navbar-brand {
    color: white !important;
}

.navbar.navbar-transparent .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar.navbar-transparent .nav-link:hover {
    color: var(--primary) !important;
}

.navbar.navbar-transparent .nav-icon-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar.navbar-transparent .nav-icon-link:hover {
    color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hamburger para navbar transparente */
.navbar.navbar-transparent .hamburger span {
    background: rgba(255, 255, 255, 0.9);
}

/* ================================================
   ANIMAÇÕES DE TRANSIÇÃO
   ================================================ */

/* Animação suave para mudanças de estado */
.navbar-brand,
.nav-link,
.nav-icon-link,
.hamburger span {
    transition: all 0.3s ease;
}

/* ================================================
   RESPONSIVIDADE PARA NAVBAR SOBREPOSTA
   ================================================ */

@media (max-width: 991.98px) {
    .hero-container {
        padding-top: 80px; /* Menos padding no mobile */
    }
    
    /* Mobile dropdown styling para navbar transparente */
    .navbar.navbar-transparent .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile nav drawer para navbar transparente */
    .navbar.navbar-transparent .mobile-nav-drawer {
        background: rgba(0, 0, 0, 0.95);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 767.98px) {
    .hero-container {
        padding-top: 70px; /* Ainda menos padding em telas muito pequenas */
    }
}

/* ================================================
   AJUSTES ESPECÍFICOS PARA SEÇÕES
   ================================================ */

/* Garantir que todas as seções tenham padding adequado */
section {
    scroll-margin-top: 80px; /* Para navegação suave */
}

/* Ajustes para hero section específicamente */
.hero-section {
    padding-top: 0 !important; /* Remove padding superior da hero */
    margin-top: 0 !important; /* Garantir que não há margem superior */
}

/* ================================================
   DARK MODE ADAPTATIONS PARA NAVBAR SOBREPOSTA
   ================================================ */

/* Dark mode para navbar transparente */
[data-theme="dark"] .navbar.navbar-transparent {
    background: rgba(15, 23, 42, 0.05) !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.1);
}

/* Dark mode para navbar sólida */
[data-theme="dark"] .navbar.navbar-solid {
    background: rgba(15, 23, 42, 0.95) !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Dark mode para texto da navbar transparente */
[data-theme="dark"] .navbar.navbar-transparent .navbar-brand,
[data-theme="dark"] .navbar.navbar-transparent .nav-link,
[data-theme="dark"] .navbar.navbar-transparent .nav-icon-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .navbar.navbar-transparent .hamburger span {
    background: rgba(255, 255, 255, 0.9);
}
