/* ===============================================
   DESIGN SYSTEM - CLEAN & MODERN
   =============================================== */
:root {
    --primary: #fcef00;
    --primary-dark: #e6d900;
    --secondary: #000000;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================================
   ANIMAÇÕES SUAVES - SCROLL REVEAL
   =============================================== */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate="zoom-out"] {
    transform: scale(1.1);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Animação especial para o hero banner */
.hero-banner[data-animate].animated .hero-content > * {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-banner[data-animate].animated .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-banner[data-animate].animated .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-banner[data-animate].animated .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-banner[data-animate].animated .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-banner[data-animate].animated .hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Animação suave para os cards do hero */
.hero-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(252, 239, 0, 0.2);
}

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efeito smooth de entrada para seções */
.section-header[data-animate].animated {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* Scrollbar Clean */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

/* ===============================================
   NAVBAR - CLEAN & MODERN
   =============================================== */
.navbar {
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 40px;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 30px;
}

.navbar-brand:hover img {
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(252, 239, 0, 0.5));
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

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

/* Navbar Custom Breakpoint - 1095px */
@media (max-width: 1095px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    
    .navbar-expand-lg .navbar-toggler {
        display: inline-block !important;
    }
    
    .navbar-contact {
        display: none !important;
    }
}

@media (min-width: 1096px) {
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }
    
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

/* Navbar Contact Info */
.navbar-contact .phone-link:hover {
    color: var(--primary) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background: #1a1a1a !important;
    border: 1px solid rgba(252, 239, 0, 0.2) !important;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 220px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(252, 239, 0, 0.1) !important;
    color: var(--primary) !important;
}

.dropdown-item:focus {
    background: rgba(252, 239, 0, 0.1) !important;
    color: var(--primary) !important;
}

.dropdown-item i {
    width: 20px;
    color: var(--primary);
}

.dropdown-divider {
    border-top: 1px solid rgba(252, 239, 0, 0.2);
    margin: 0.5rem 0;
}

.dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.15em;
}

.btn-orange {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-orange:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.custom-toggler {
    border: 1px solid rgba(252, 239, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    background: rgba(252, 239, 0, 0.1);
}

.custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(252, 239, 0, 0.2);
}

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

.custom-offcanvas {
    background: #1a1a1a;
    border-right: 1px solid rgba(252, 239, 0, 0.2);
}

.custom-offcanvas .offcanvas-title {
    color: var(--primary);
    font-weight: 700;
}

.custom-offcanvas .nav-link {
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.custom-offcanvas .nav-link:hover {
    background: rgba(252, 239, 0, 0.1);
    color: var(--primary) !important;
}

.custom-offcanvas .nav-link i {
    width: 24px;
    color: var(--primary);
}

.custom-offcanvas .btn-close {
    opacity: 1;
    filter: invert(1) brightness(2);
}

.btn-close-custom {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-custom:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-contact-info {
    font-size: 0.875rem;
}

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

.btn-success {
    background: #25D366;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-success:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===============================================
   WHATSAPP BUTTON
   =============================================== */
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.whatsapp-btn:hover {
    background: #20b358;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    }
}

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

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    top: 0;
    left: 0;
    animation: ripple 2s ease-out infinite;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    animation: none;
    opacity: 0;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* ===============================================
   MOBILE QUICK ACCESS CARDS
   =============================================== */
.mobile-quick-cards {
    background: #ffffff;
    padding: 1rem 0 1.5rem;
    margin-top: 0;
    overflow: hidden;
}

.mobile-quick-cards .container {
    max-width: 100%;
    overflow: hidden;
}

.mobile-quick-cards .row {
    margin-left: 0;
    margin-right: 0;
}

.mobile-quick-cards .hero-card {
    aspect-ratio: 1;
    min-height: 120px;
}

.mobile-quick-cards .hero-card h4 {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.mobile-quick-cards .hero-card p {
    font-size: 0.65rem;
    line-height: 1.3;
}

.mobile-quick-cards .hero-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.mobile-quick-cards .hero-card-icon i {
    font-size: 1.1rem;
}


/* ===============================================
   HERO BANNER - UI/UX FOCUSED
   =============================================== */
.hero-banner {
    position: relative;
    background: #ffffff;
    padding: 140px 0 80px;
    overflow: hidden;
}

/* Left Section - Carbon Fiber with Diagonal */
.hero-left-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    clip-path: polygon(0 0, 50% 0, 62% 50%, 50% 100%, 0 100%);
    z-index: 0;
}

/* Right Section - White */
.hero-right-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%, 62% 50%);
    z-index: 0;
}

/* Arrow Pointer - Not needed with diagonal */
.hero-arrow-pointer {
    display: none;
}

/* Carbon Fiber Pattern Background - Only on left */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(252, 239, 0, 0.02) 10px,
            rgba(252, 239, 0, 0.02) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.01) 10px,
            rgba(255, 255, 255, 0.01) 20px
        );
    background-size: 100% 100%;
    clip-path: polygon(0 0, 50% 0, 62% 50%, 50% 100%, 0 100%);
    z-index: 1;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    background: rgba(252, 239, 0, 0.1);
    border: 1px solid rgba(252, 239, 0, 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-heading {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
}

.hero-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #000;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 239, 0, 0.3);
}

.btn-primary-hero:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(252, 239, 0, 0.4);
}

.btn-primary-hero i {
    transition: transform 0.3s ease;
}

.btn-primary-hero:hover i {
    transform: translateX(4px);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-box i {
    font-size: 1.75rem;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.info-box div {
    display: flex;
    flex-direction: column;
}

.info-box strong {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.info-box span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Cards Grid */
.hero-cards-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: min(550px, 90%);
    margin: -60px auto 0;
    padding: 0 1rem;
    margin-left: auto;
    margin-right: 1rem;
}

.hero-card-link {
    text-decoration: none;
    display: block;
}

.hero-card {
    background: #ffffff;
    border-radius: 10px;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 1.5vw, 1rem);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-card-link:hover .hero-card {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(252, 239, 0, 0.3);
}

.hero-card-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-card-link:hover .hero-card-icon {
    transform: scale(1.1);
}

.hero-card-icon i {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--primary);
}

.hero-card h4 {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 0.4rem;
}

.hero-card p {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* Hero Visual - Removed */
.hero-visual {
    display: none;
}

.visual-circle {
    display: none;
}

.hero-img {
    display: none;
}

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

/* Responsive */
@media (max-width: 991px) {
    .hero-left-section,
    .hero-right-section,
    .hero-arrow-pointer,
    .hero-bg-pattern {
        display: none;
    }
    
    .hero-banner {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
        padding: 120px 0 60px;
    }
    
    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.4;
        background-image: 
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(252, 239, 0, 0.02) 10px,
                rgba(252, 239, 0, 0.02) 20px
            ),
            repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.01) 10px,
                rgba(255, 255, 255, 0.01) 20px
            );
        z-index: 0;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .visual-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .hero-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-card-icon i {
        font-size: 1.35rem;
    }
    
    .hero-card h4 {
        font-size: 0.95rem;
    }
    
    .hero-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .hero-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .hero-card-icon i {
        font-size: 1.2rem;
    }
    
    .hero-card h4 {
        font-size: 0.875rem;
    }
    
    .hero-card p {
        font-size: 0.7rem;
    }
    
    .hero-card {
        padding: 1.25rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 0 50px;
        overflow: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-info {
        gap: 1.25rem;
    }
    
    .info-box {
        flex: 1 1 calc(50% - 0.625rem);
    }
}

/* ===============================================
   SERVICE CARDS - PADRONIZADOS
   =============================================== */
.card-custom {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.card-custom:hover .icon {
    transform: scale(1.1);
}

.card-custom h5 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* ===============================================
   PLANOS - CARDS PADRONIZADOS
   =============================================== */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
}

.card-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.benefit-list li {
    font-size: 0.95rem;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.benefit-list li i {
    margin-right: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-plan {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-footer {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Owl Carousel Clean */
.owl-carousel {
    opacity: 1 !important;
    display: block !important;
}

.owl-nav button {
    background: var(--primary) !important;
    border: none;
    padding: 10px 12px !important;
    margin: 5px;
    border-radius: 50%;
    color: var(--secondary) !important;
    font-size: 1.25rem !important;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.owl-nav button:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.owl-dots .owl-dot span {
    background: var(--border-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.owl-dots .owl-dot.active span {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===============================================
   PAGE HEADER (for internal pages)
   =============================================== */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(252, 239, 0, 0.03) 10px,
            rgba(252, 239, 0, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(252, 239, 0, 0.03) 10px,
            rgba(252, 239, 0, 0.03) 20px
        );
}

.page-label {
    display: inline-block;
    background: rgba(252, 239, 0, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(252, 239, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===============================================
   BENEFITS SECTION
   =============================================== */
.benefit-card {
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===============================================
   CTA SECTION
   =============================================== */
.cta-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(252, 239, 0, 0.03) 10px,
            rgba(252, 239, 0, 0.03) 20px
        );
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

/* ===============================================
   CONTACT PAGE
   =============================================== */
.contact-info-section {
    background: #ffffff;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(252, 239, 0, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
}

.contact-features {
    margin-top: 2rem;
}

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

.contact-feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.contact-feature-item span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
}

.social-contact h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-contact {
    width: 50px;
    height: 50px;
    background: rgba(252, 239, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.social-link-contact:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 239, 0, 0.3);
}

.social-link-contact i {
    font-size: 1.5rem;
}

.whatsapp-cta-section {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
}

.whatsapp-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.whatsapp-cta-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.whatsapp-cta-section h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

.whatsapp-cta-section .btn-primary-hero {
    background: #ffffff;
    color: #25d366;
}

.whatsapp-cta-section .btn-primary-hero:hover {
    background: var(--primary);
    color: #000;
}

/* ===============================================
   ABOUT PAGE
   =============================================== */
.about-section {
    background: #ffffff;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text strong {
    color: #000;
    font-weight: 700;
}

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000 !important;
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    color: #000 !important;
}

.stat-card p {
    color: rgba(0, 0, 0, 0.7) !important;
}

.stat-label {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9375rem;
    margin: 0;
}

.mission-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.feature-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq-section {
    background: #f8f9fa;
}

.faq-item {
    background: white;
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item .accordion-button {
    background: white;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    color: white;
}

.faq-item .accordion-button:not(.collapsed) i {
    color: var(--primary);
}

.faq-item .accordion-button i {
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.2rem;
    width: auto;
    height: auto;
    background-size: auto;
}

.faq-item .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item .accordion-body {
    padding: 1.5rem;
    color: #495057;
    line-height: 1.8;
    font-size: 0.95rem;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-contact {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(252, 239, 0, 0.05),
        rgba(252, 239, 0, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
}

.faq-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.faq-contact-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.faq-contact-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.faq-contact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.faq-contact-info {
    position: relative;
    z-index: 1;
}

.contact-info-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-info-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.btn-faq-contact:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 239, 0, 0.4);
    text-decoration: none;
}

.faq-quick-links h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.faq-quick-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    position: relative;
    z-index: 1;
}

.faq-quick-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.faq-quick-links ul li a i {
    color: var(--primary);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .faq-item .accordion-button {
        font-size: 0.9rem;
        padding: 1.25rem;
    }
    
    .faq-item .accordion-body {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
    
    .faq-contact {
        padding: 2.5rem 2rem;
        margin-top: 2rem;
        position: relative !important;
        top: auto !important;
    }
    
    .faq-contact-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 991px) {
    .faq-contact.sticky-top {
        position: relative !important;
        top: auto !important;
    }
}


/* ===============================================
   FOOTER - MODERN DESIGN
   =============================================== */
.footer-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-widget {
    padding: 0 1rem;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(252, 239, 0, 0.1);
    border: 1px solid rgba(252, 239, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
    border-color: var(--primary);
    text-decoration: none;
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-whatsapp-btn:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-copyright,
.footer-dev {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-dev a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
}

/* ===============================================
   MODAL - CLEAN DESIGN
   =============================================== */
.modal-content {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.modal-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.btn-close {
    background: transparent;
    border: none;
    opacity: 0.5;
    transition: var(--transition);
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem 1.5rem;
    background: var(--bg-white);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(252, 239, 0, 0.1);
    outline: none;
}

.modal-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-secondary);
}

/* ===============================================
   UTILITIES
   =============================================== */
.bg-black {
    background: var(--secondary) !important;
}

.text-warning {
    color: var(--primary) !important;
}

.text-white {
    color: var(--text-primary) !important;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-top: 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(252, 239, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn-hero-primary,
.btn-hero-outline {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--secondary);
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    color: var(--primary);
}

.hero-section img {
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   PLANOS SECTION
   =============================================== */
.planos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background: rgba(252, 239, 0, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid #000000;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.plan-featured {
    border-color: #000000;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-icon {
    transform: scale(1.1);
}

.plan-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-footer {
    text-align: center;
}

.plan-note {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-plan:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-featured .btn-plan {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.plan-featured .btn-plan:hover {
    background: var(--secondary);
    color: var(--primary);
}

@media (max-width: 991px) {
    .plan-featured {
        transform: scale(1);
    }
    
    .plan-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .plan-icon {
        width: 70px;
        height: 70px;
    }
    
    .plan-icon i {
        font-size: 1.75rem;
    }
}

/* Planos Section Container */
.planos-section {
    overflow: hidden;
}

/* Planos Carousel */
.planos-carousel {
    width: 100%;
}

.planos-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--secondary) !important;
    color: var(--primary) !important;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.planos-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: var(--secondary) !important;
    transform: scale(1.1);
}

.planos-carousel .owl-nav {
    margin-top: 2rem;
}

.planos-carousel .owl-dots {
    display: none !important;
}

/* Mobile: carousel ativo */
@media (max-width: 991px) {
    .planos-carousel .owl-stage-outer {
        overflow: hidden;
        padding: 20px 0;
    }
    
    .planos-carousel .item {
        padding: 0 15px;
    }
}

/* Desktop: Grid layout sem carousel */
@media (min-width: 992px) {
    .planos-carousel {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .planos-carousel .item {
        width: 100% !important;
    }
}

/* ===============================================
   CTA SECTION
   =============================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(252, 239, 0, 0.03),
        rgba(252, 239, 0, 0.03) 10px,
        transparent 10px,
        transparent 20px
    ),
    repeating-linear-gradient(
        -45deg,
        rgba(252, 239, 0, 0.03),
        rgba(252, 239, 0, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 2px solid rgba(252, 239, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.cta-content {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.cta-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-primary {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.btn-cta-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 239, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(252, 239, 0, 0.2);
    transition: all 0.3s ease;
}

/* ===============================================
   MELHORIAS NAS ANIMAÇÕES
   =============================================== */

/* Overlay de carregamento suave */
body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.loaded::before {
    opacity: 0;
}

/* Efeitos adicionais para cards de planos */
.plan-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Efeito de hover nos itens do accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

/* Animação suave para os botões */
.btn-primary-hero,
.btn-secondary-hero,
.btn-faq-contact {
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-hero:hover::before {
    width: 300px;
    height: 300px;
}

/* Efeito de pulso nos ícones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-card-icon i,
.plan-icon i {
    animation: pulse 2s ease-in-out infinite;
}

.hero-card:hover .hero-card-icon i,
.plan-card:hover .plan-icon i {
    animation: none;
    transform: scale(1.1) rotate(5deg);
}

/* Gradiente animado no background */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(252, 239, 0, 0.03), transparent);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    pointer-events: none;
}


.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(252, 239, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.services-section {
    background: var(--bg-white);
}

/* ===============================================
   RESPONSIVIDADE
   =============================================== */
@media (max-width: 768px) {
    .card-title {
        font-size: 2rem;
    }
    
    .icon {
        font-size: 2rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .btn-orange {
        width: 100%;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}
