/* ===== CUSTOM CSS FOR NOBRI HTML ===== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --nobri-primary: #00A99D;
    --nobri-secondary: #6AF2F0;
    --nobri-dark: #121212;
    --nobri-light: #FAFAFA;
    --nobri-card: #171717;
    --nobri-border: #262626;
    --nobri-muted: #404040;
    --nobri-muted-foreground: #A3A3A3;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--nobri-primary), var(--nobri-secondary));
    --gradient-text: linear-gradient(135deg, var(--nobri-primary), var(--nobri-secondary));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--nobri-dark);
    color: var(--nobri-light);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLLBAR STYLES ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--nobri-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 169, 157, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nobri-primary);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.bg-primary {
    background-color: var(--nobri-primary) !important;
}

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

.btn-primary {
    background-color: var(--nobri-primary);
    border-color: var(--nobri-primary);
    color: white;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    background-color: #008a7f;
    border-color: #008a7f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 169, 157, 0.3);
}

.btn-outline-primary {
    color: var(--nobri-primary);
    border-color: var(--nobri-primary);
    background-color: transparent;
    transition: all var(--transition-normal);
}

.btn-outline-primary:hover {
    background-color: var(--nobri-primary);
    border-color: var(--nobri-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 169, 157, 0.3);
}

.bg-dark {
    background-color: var(--nobri-card) !important;
}

/* ===== HEADER STYLES ===== */
.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(38, 38, 38, 0.4);
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.98) !important;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

.brand-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
    color: rgba(250, 250, 250, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--nobri-primary) !important;
    background-color: rgba(0, 169, 157, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    font-size: 1.25rem;
    color: var(--nobri-light);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.btn-cta {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 169, 157, 0.1) 0%, var(--nobri-dark) 70%);
    padding: 8rem 0 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.05) 0%, transparent 50%, rgba(106, 242, 240, 0.05) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.text-glow {
    color: var(--nobri-light);
    text-shadow: 0 0 20px rgba(0, 169, 157, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(0, 169, 157, 0.3);
    }
    100% {
        text-shadow: 0 0 40px rgba(0, 169, 157, 0.6);
    }
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientGlow 3s ease-in-out infinite alternate;
}

@keyframes gradientGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(106, 242, 240, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(106, 242, 240, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(250, 250, 250, 0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

/* ===== VIDEO STYLES ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity var(--transition-normal);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-button-container {
    position: relative;
    z-index: 3;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.play-button:hover::before {
    width: 200px;
    height: 200px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(106, 242, 240, 0.6);
}

.play-button i {
    margin-left: 4px; /* Adjust play icon position */
    position: relative;
    z-index: 2;
}

.youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.youtube-player.active {
    opacity: 1;
}

.youtube-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== STORE BUTTON ===== */
.store-button {
    border: 2px solid var(--nobri-primary);
    color: var(--nobri-primary);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.store-button:hover::before {
    left: 0;
}

.store-button:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.3);
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 3rem 0; /* Reduzido de 5rem para 3rem */
}

/* Espaçamento maior apenas em mobile */
@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--nobri-light);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(250, 250, 250, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FLOATING HELP BUTTON ===== */
.floating-help-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.btn-floating {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.4);
}

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

/* ===== MODAL STYLES ===== */
.modal-content {
    background-color: var(--nobri-card);
    border: 1px solid var(--nobri-border);
    border-radius: var(--border-radius-lg);
}

.modal-header {
    border-bottom: 1px solid var(--nobri-border);
    background: var(--gradient-primary);
    color: white;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
}

.message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    max-width: 80%;
}

.bot-message {
    background-color: rgba(0, 169, 157, 0.1);
    border: 1px solid rgba(0, 169, 157, 0.2);
    margin-right: auto;
}

.user-message {
    background-color: rgba(106, 242, 240, 0.1);
    border: 1px solid rgba(106, 242, 240, 0.2);
    margin-left: auto;
    text-align: right;
}

.message-content {
    color: var(--nobri-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input-container {
    margin-top: 1rem;
}

/* ===== TOAST STYLES ===== */
.toast {
    background-color: var(--nobri-card);
    border: 1px solid var(--nobri-border);
    color: var(--nobri-light);
}

.toast-header {
    background-color: rgba(0, 169, 157, 0.1);
    border-bottom: 1px solid var(--nobri-border);
}

/* ===== FOOTER STYLES ===== */
.footer-main {
    background-color: var(--nobri-card);
    border-top: 1px solid var(--nobri-border);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-main p {
    color: rgba(250, 250, 250, 0.7);
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

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

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .floating-help-button {
        bottom: 1rem;
        right: 1rem;
    }
    
    .btn-floating {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-container {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .store-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(var(--nobri-card), var(--nobri-card)) padding-box,
                var(--gradient-primary) border-box;
}

.hover-lift {
    transition: transform var(--transition-normal);
}

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

.glow-on-hover {
    transition: all var(--transition-normal);
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(0, 169, 157, 0.4);
}

/* ===== LOADING ANIMATIONS ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 169, 157, 0.3);
    border-top: 4px solid var(--nobri-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== FORM STYLES ===== */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nobri-border);
    color: var(--nobri-light);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--nobri-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 157, 0.25);
    color: var(--nobri-light);
}

.form-control::placeholder {
    color: rgba(250, 250, 250, 0.5);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--nobri-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --nobri-primary: #00D4C7;
        --nobri-secondary: #7FFAFF;
    }
}


/* ===== NEW SECTIONS STYLES ===== */

/* Services Grid Styles */
.services-section {
    background: rgba(0, 169, 157, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 169, 157, 0.1);
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 2rem;
}

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

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 169, 157, 0.2);
    transition: all var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 169, 157, 0.1);
    border-color: var(--nobri-primary);
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nobri-light);
    line-height: 1.3;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.jade-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    color: white;
}

.jade-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.3);
    color: white;
}

/* How It Works Cards */
.how-it-works-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 169, 157, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 169, 157, 0.1);
    border-color: var(--nobri-primary);
    box-shadow: 0 15px 40px rgba(0, 169, 157, 0.2);
}

.how-it-works-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.how-it-works-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.how-it-works-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--nobri-light);
    margin-bottom: 1rem;
}

.how-it-works-card .card-description {
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

/* Demo Link */
.demo-link {
    color: var(--nobri-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.demo-link:hover {
    color: var(--nobri-secondary);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Support Cards */
.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 169, 157, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.support-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 169, 157, 0.1);
    border-color: var(--nobri-primary);
    box-shadow: 0 15px 40px rgba(0, 169, 157, 0.2);
}

.support-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.support-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.support-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--nobri-light);
    margin-bottom: 1rem;
}

.support-card .card-description {
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 169, 157, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 169, 157, 0.1);
    border-color: var(--nobri-primary);
    box-shadow: 0 15px 40px rgba(0, 169, 157, 0.2);
}

.benefit-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nobri-light);
    margin-bottom: 0.5rem;
}

.benefit-card .card-description {
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Client Video Cards */
.client-video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 169, 157, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.client-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 169, 157, 0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.client-video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.client-video-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: white;
}

.play-btn:hover {
    transform: scale(1.1);
    color: white;
}

.play-btn i {
    font-size: 1.5rem;
    color: white;
    margin-left: 3px;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nobri-light);
    margin-bottom: 0.5rem;
}

.video-description {
    color: rgba(250, 250, 250, 0.7);
    margin: 0;
}

/* Smart Form Styles */
.smart-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

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

.smart-form .form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: white;
    color: #333;
}

.smart-form .form-control:focus {
    border-color: var(--nobri-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 157, 0.25);
    background: white;
    color: #333;
}

.smart-form .form-control::placeholder {
    color: #999;
}

/* Proposal Summary */
.proposal-summary {
    background: rgba(0, 169, 157, 0.1);
    border: 2px solid var(--nobri-primary);
    border-radius: 15px;
    padding: 2rem;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.summary-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 169, 157, 0.2);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    background: rgba(0, 169, 157, 0.1);
    margin: 1rem -1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.summary-item.recurring {
    background: rgba(106, 242, 240, 0.1);
    margin: 1rem -1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.summary-label {
    color: #333;
    font-weight: 500;
}

.summary-value {
    color: var(--nobri-primary);
    font-weight: 700;
}

/* FAQ Styles */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 169, 157, 0.2);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--nobri-light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 169, 157, 0.1);
    color: var(--nobri-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 169, 157, 0.25);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(250, 250, 250, 0.8);
    padding: 1.5rem;
    line-height: 1.6;
}

.requirements-diagram {
    background: rgba(0, 169, 157, 0.05) !important;
    border: 1px solid rgba(0, 169, 157, 0.2);
}

.requirement-item {
    flex: 1;
    max-width: 200px;
}

.requirement-icon {
    margin-bottom: 1rem;
}

.requirement-text {
    font-size: 0.9rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jade-button,
    .store-button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .smart-form-container {
        padding: 2rem 1.5rem;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}


/* ===== ADVANCED SCROLL ANIMATIONS ===== */

/* Parallax Background Effects */
.parallax-bg {
    position: relative;
    overflow: hidden;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(0, 169, 157, 0.1) 0%, transparent 70%);
    animation: parallaxFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -20px) rotate(1deg); }
    50% { transform: translate(10px, -10px) rotate(-1deg); }
    75% { transform: translate(-5px, -15px) rotate(0.5deg); }
}

/* Advanced Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Advanced Card Hover Effects */
.advanced-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 157, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.advanced-card:hover::before {
    left: 100%;
}

.advanced-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 169, 157, 0.3);
}

/* Floating Elements Animation */
.floating-element {
    animation: floatingElement 6s ease-in-out infinite;
}

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

.floating-element:nth-child(odd) {
    animation-delay: -3s;
}

/* Advanced Section Transitions */
.section-transition {
    position: relative;
    overflow: hidden;
}

.section-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.section-transition.in-view::after {
    transform: scaleX(1);
}

/* Morphing Background Shapes */
.morphing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.morphing-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 169, 157, 0.1) 0%, transparent 70%);
    animation: morphingShape 15s ease-in-out infinite;
}

.morphing-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.morphing-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.morphing-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes morphingShape {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    25% { 
        transform: translate(30px, -20px) scale(1.2);
        border-radius: 60% 40% 30% 70%;
    }
    50% { 
        transform: translate(-20px, 30px) scale(0.8);
        border-radius: 30% 60% 70% 40%;
    }
    75% { 
        transform: translate(20px, 10px) scale(1.1);
        border-radius: 40% 30% 60% 50%;
    }
}

/* Advanced Text Reveal Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--nobri-dark);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.revealed::after {
    transform: translateX(100%);
}

/* Glowing Border Effect */
.glow-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--nobri-card), var(--nobri-card)) padding-box,
                var(--gradient-primary) border-box;
    transition: all 0.4s ease;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.glow-border:hover::before {
    opacity: 0.7;
}

/* Advanced Loading Animation */
.loading-dots {
    display: inline-flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nobri-primary);
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Particle Effect Background */
.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 169, 157, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(odd) {
    animation-duration: 25s;
    background: rgba(106, 242, 240, 0.4);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced Section Separators */
.section-separator {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, var(--nobri-primary) 50%, transparent 60%);
    animation: sectionSeparator 3s ease-in-out infinite;
}

@keyframes sectionSeparator {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Advanced Scroll Progress */
.scroll-progress-advanced {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 169, 157, 0.5);
}

/* Magnetic Hover Effect */
.magnetic-hover {
    transition: transform 0.2s ease;
    cursor: pointer;
}

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

/* Ripple Effect */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    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;
}

.ripple-effect:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .scroll-reveal {
        transform: translateY(30px);
    }
    
    .advanced-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .morphing-shape {
        width: 150px !important;
        height: 150px !important;
    }
}


/* ===== BENEFIT CARDS NEW DESIGN ===== */
.benefit-card-new {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.benefit-card-new:hover::before {
    opacity: 1;
}

.benefit-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 204, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.2);
}

.benefit-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nobri-primary) 0%, var(--nobri-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.benefit-card-new:hover .benefit-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
    z-index: 1;
    position: relative;
}

.benefit-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.bg-gradient {
    background: linear-gradient(135deg, var(--nobri-primary) 0%, var(--nobri-secondary) 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.quote-icon {
    font-size: 40px;
    color: var(--nobri-primary);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: white;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: var(--nobri-primary);
    font-weight: 500;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--nobri-primary);
    border-color: var(--nobri-primary);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 204, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--nobri-primary);
    transform: translateY(-50%) scale(1.1);
}

/* ===== FORM IMPROVEMENTS ===== */
.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.form-container > * {
    position: relative;
    z-index: 2;
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nobri-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 204, 0.25);
    color: white;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.input-group-modern .btn {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.input-group-modern .btn:hover {
    background: var(--nobri-primary);
    border-color: var(--nobri-primary);
    transform: scale(1.05);
}

/* ===== PROPOSAL SUMMARY SIDEBAR ===== */
.proposal-summary-sidebar {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    opacity: 0.5;
    z-index: 1;
}

.summary-card > * {
    position: relative;
    z-index: 2;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--nobri-primary) 0%, var(--nobri-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.summary-icon i {
    font-size: 16px;
    color: white;
}

.summary-details {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.summary-value {
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.summary-price {
    color: var(--nobri-primary);
    font-size: 18px;
}

.summary-total {
    background: rgba(0, 255, 204, 0.1);
    border-radius: 15px;
    padding: 20px 15px !important;
    margin: 20px 0;
}

.summary-total-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--nobri-primary);
}

.summary-recurring {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    padding: 15px !important;
}

.summary-recurring-price {
    color: var(--nobri-secondary);
    font-size: 18px;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 10px 0;
}

.summary-actions .btn {
    border-radius: 15px;
    font-weight: 600;
    padding: 15px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.summary-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.summary-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.summary-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER IMPROVEMENTS ===== */
.footer-main {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,255,204,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.3;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-widget {
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--nobri-primary);
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--nobri-primary) 0%, var(--nobri-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.3);
    color: white;
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--nobri-primary), var(--nobri-secondary));
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--nobri-primary);
    font-size: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    color: var(--nobri-primary);
    transform: translateX(5px);
}

.footer-contact .contact-item i {
    width: 20px;
    margin-right: 12px;
    color: var(--nobri-primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--nobri-primary);
}

.footer-links-bottom .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .benefit-card-new {
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        margin: 10px;
        padding: 25px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .proposal-summary-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .footer-links-bottom {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .benefit-title {
        font-size: 16px;
    }
    
    .benefit-description {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .summary-card {
        padding: 20px;
    }
}


/* ===== ENHANCED SCROLL EFFECTS ===== */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
}

.in-viewport {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ===== FLOATING PARTICLES ===== */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, var(--nobri-primary), var(--nobri-secondary));
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== MAGNETIC HOVER EFFECTS ===== */
.magnetic-hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RIPPLE EFFECT ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--nobri-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* ===== SMOOTH TRANSITIONS ===== */
* {
    transition: all 0.3s ease;
}

.section-padding {
    transition: all 0.5s ease;
}

.benefit-card-new {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card-new:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 255, 204, 0.25);
}

/* ===== ENHANCED FORM STYLES ===== */
.form-control-modern {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-control-modern:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 204, 0.3);
}

.summary-card {
    transition: all 0.4s ease;
}

.summary-item {
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

/* ===== ENHANCED CAROUSEL ===== */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active .testimonial-card {
    transform: scale(1);
    opacity: 1;
}

.carousel-item .testimonial-card {
    transform: scale(0.95);
    opacity: 0.8;
}

/* ===== ENHANCED FOOTER ===== */
.footer-links a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-links a:hover {
    transform: translateX(10px);
    color: var(--nobri-primary);
}

.social-link {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 255, 204, 0.4);
}

/* ===== ULTRA SMOOTH SCROLLING ===== */
html {
    scroll-behavior: auto; /* Disable default to use custom */
}

/* ===== ENHANCED SERVICES GRID ===== */
.service-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.3);
}

/* ===== ENHANCED BUTTONS ===== */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.4);
}

/* ===== ENHANCED ACCORDION ===== */
.accordion-button {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--nobri-primary), var(--nobri-secondary));
    color: white;
    transform: translateX(5px);
}

.accordion-item {
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
    
    .floating-particles .particle:nth-child(n+11) {
        display: none; /* Reduce particles on mobile */
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.benefit-card-new,
.testimonial-card,
.service-item,
.summary-item {
    will-change: transform;
}

/* ===== ENHANCED LOADING STATES ===== */
.loading {
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
    pointer-events: auto;
}

/* ===== ENHANCED MODAL STYLES ===== */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal.fade .modal-dialog {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.8) translateY(-50px);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* ===== WHITE TEXT FOR FORM LABELS ===== */
.form-label {
    color: white !important;
    font-weight: 500;
}

.summary-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.summary-value {
    color: white !important;
}

.summary-title {
    color: white !important;
}

.summary-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}


/* ===== NOVA SEÇÃO DE SERVIÇOS REFORMULADA ===== */
.services-section-new {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.1), rgba(0, 255, 204, 0.05));
    border-radius: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,204,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.services-title-new {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nobri-primary), var(--nobri-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.services-subtitle-new {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-card-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card-new:hover::before {
    left: 100%;
}

.service-card-new:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 255, 204, 0.3);
    border-color: var(--nobri-primary);
}

.service-icon-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--nobri-primary), var(--nobri-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.service-card-new:hover .service-icon-new::before {
    width: 100%;
    height: 100%;
}

.service-icon-new i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 255, 204, 0.4);
}

.service-title-new {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description-new {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

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

.jade-button-new {
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--nobri-primary), var(--nobri-secondary));
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.jade-button-new:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 255, 204, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.jade-button-new:hover .btn-glow {
    left: 100%;
}

.store-button-new {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    transition: all 0.4s ease;
}

.store-button-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nobri-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== LOGOS MAIORES ===== */
.logo-img {
    height: 50px !important;
    width: auto !important;
    max-width: 200px !important;
}

.footer-logo-img {
    height: 60px !important;
    width: auto !important;
    max-width: 250px !important;
}

.navbar-brand {
    padding: 10px 0 !important;
}

/* ===== RESPONSIVIDADE PARA NOVA SEÇÃO ===== */
@media (max-width: 768px) {
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card-new {
        padding: 30px 20px;
    }
    
    .services-title-new {
        font-size: 2.2rem;
    }
    
    .services-subtitle-new {
        font-size: 1.1rem;
    }
    
    .jade-button-new,
    .store-button-new {
        font-size: 1rem;
        padding: 12px 25px;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }
    
    .services-actions .btn {
        display: block;
        margin: 10px auto;
    }
}

@media (max-width: 576px) {
    .services-section-new {
        padding: 40px 0;
        margin: 20px 0;
        border-radius: 20px;
    }
    
    .service-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-new i {
        font-size: 1.5rem;
    }
    
    .service-title-new {
        font-size: 1.2rem;
    }
    
    .service-description-new {
        font-size: 0.9rem;
    }
}


/* ===== ANIMAÇÕES DO RESUMO EM TEMPO REAL ===== */
.summary-updated {
    animation: summaryPulse 0.5s ease;
    color: var(--nobri-primary) !important;
    font-weight: 700 !important;
}

@keyframes summaryPulse {
    0% {
        transform: scale(1);
        background: transparent;
    }
    50% {
        transform: scale(1.05);
        background: rgba(0, 255, 204, 0.2);
        border-radius: 5px;
        padding: 2px 8px;
    }
    100% {
        transform: scale(1);
        background: transparent;
    }
}

.summary-updating {
    animation: summaryCardPulse 0.3s ease;
}

@keyframes summaryCardPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 255, 204, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* ===== CONTADORES MELHORADOS ===== */
.counter-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--nobri-primary);
    background: transparent;
    color: var(--nobri-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.counter-button:hover {
    background: var(--nobri-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
}

.counter-button:active {
    transform: scale(0.95);
}

.counter-input {
    width: 80px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 8px;
    margin: 0 10px;
}

.counter-input:focus {
    border-color: var(--nobri-primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.2);
    outline: none;
}

/* ===== MELHORIAS NO FORMULÁRIO ===== */
.form-control-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nobri-primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.2);
    outline: none;
    transform: translateY(-2px);
}

.form-label {
    color: white !important;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* ===== EFEITOS DE HOVER MELHORADOS ===== */
.summary-item {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.summary-item.total {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 169, 157, 0.2));
    border: 1px solid rgba(0, 255, 204, 0.3);
    font-weight: 700;
}

.summary-item.total:hover {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.3), rgba(0, 169, 157, 0.3));
    transform: translateX(8px) scale(1.02);
}

.summary-item.recurring {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-weight: 600;
}

.summary-item.recurring:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 152, 0, 0.3));
    transform: translateX(8px) scale(1.02);
}


/* ===== LOGOS AINDA MAIORES ===== */
.logo-img {
    height: 65px !important;
    width: auto !important;
    max-width: 250px !important;
}

.footer-logo-img {
    height: 75px !important;
    width: auto !important;
    max-width: 300px !important;
}

.navbar-brand {
    padding: 15px 0 !important;
}

/* ===== ESPAÇAMENTO SEÇÃO COMO FUNCIONA - REDUZIDO ===== */
.how-it-works-section {
    padding: 60px 0 !important;
    margin: 40px 0 !important;
}

.how-it-works-section .section-title {
    margin-bottom: 30px !important;
    font-size: 3rem !important;
}

.how-it-works-section .section-subtitle {
    margin-bottom: 40px !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
}

.step-card {
    margin-bottom: 30px !important;
    padding: 30px 25px !important;
}

.step-number {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
}

.step-title {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
}

.step-description {
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

/* ===== RESPONSIVIDADE PARA COMO FUNCIONA ===== */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0 !important;
        margin: 20px 0 !important;
    }
    
    .how-it-works-section .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .how-it-works-section .section-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
    
    .step-card {
        margin-bottom: 20px !important;
        padding: 20px 15px !important;
    }
    
    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .step-title {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .step-description {
        font-size: 0.95rem !important;
    }
}


/* ===== MODAL DE CONTRATO - MELHORADO ===== */
#contractModal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

#contractModal .modal-content {
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: none;
    background: #ffffff;
}

#contractModal .modal-header {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
    border: none;
}

#contractModal .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

#contractModal .modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    background: #f8f9fa;
}

.contract-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

.contract-header h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #20c997;
    font-size: 1.4rem;
}

.contract-parties {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #20c997;
    margin-bottom: 25px;
}

.contract-parties p {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.contract-parties span {
    color: #20c997;
    font-weight: 700;
    background: rgba(32, 201, 151, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(32, 201, 151, 0.2);
}

.clause {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.clause:last-child {
    border-bottom: none;
}

.clause h6 {
    color: #20c997;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}

.clause p {
    margin-bottom: 8px;
    text-align: justify;
    font-size: 0.95rem;
    color: #495057;
}

.clause ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.clause li {
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #6c757d;
}

.contract-footer {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    text-align: center;
}

.contract-footer p {
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

#contractModal .modal-footer {
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    padding: 25px 30px;
    border: none;
}

.contract-acceptance {
    text-align: center;
}

.form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-check-input {
    width: 22px;
    height: 22px;
    margin: 0;
    border: 2px solid #20c997;
    border-radius: 6px;
}

.form-check-input:checked {
    background-color: #20c997;
    border-color: #20c997;
}

.form-check-label {
    font-size: 1rem;
    color: #2c3e50;
    cursor: pointer;
    font-weight: 500;
}

#signContract:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#signContract:not(:disabled) {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
}

#signContract:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* ===== RESPONSIVIDADE DO MODAL ===== */
@media (max-width: 768px) {
    #contractModal .modal-dialog {
        max-width: 95vw;
        margin: 15px;
    }
    
    #contractModal .modal-body {
        padding: 20px;
        max-height: 50vh;
    }
    
    .contract-header h4 {
        font-size: 1.2rem;
    }
    
    .clause h6 {
        font-size: 0.95rem;
    }
    
    .clause p {
        font-size: 0.9rem;
    }
    
    .clause li {
        font-size: 0.85rem;
    }
    
    .form-check-label {
        font-size: 0.9rem;
    }
    
    #contractModal .modal-footer {
        padding: 20px;
    }
    
    .form-check {
        margin-bottom: 15px;
    }
    
    #signContract:not(:disabled),
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* ===== HEADER TRANSPARENTE NO MOBILE ===== */
@media (max-width: 991px) {
    .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        transition: all 0.3s ease;
        padding: 15px 0;
    }
    
    .navbar.scrolled {
        background: rgba(13, 17, 23, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    
    .navbar-brand {
        text-align: center;
        width: 100%;
        justify-content: center;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
    
    .navbar-brand img {
        height: 60px !important;
        width: auto;
        max-width: 200px;
    }
    
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
}

/* ===== MENU MOBILE MELHORADO ===== */
.navbar-toggler {
    border: none !important;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1000;
    }
    
    .navbar-nav {
        gap: 8px;
    }
    
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 12px 20px !important;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 500;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(32, 201, 151, 0.2) !important;
        color: #20c997 !important;
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link.btn-primary {
        background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
        color: white !important;
        border: none;
        padding: 15px 25px !important;
        font-weight: 600;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
    }
    
    .navbar-nav .nav-link.btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
    }
}

/* ===== CENTRALIZAÇÃO DE LOGOS NO MOBILE ===== */
@media (max-width: 991px) {
    .footer .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer .footer-logo img {
        height: 80px !important;
        margin: 0 auto;
        display: block;
    }
}

/* ===== BOTÃO JADE EXPLICA CENTRALIZADO NO MOBILE ===== */
@media (max-width: 768px) {
    .hero-buttons {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .hero-buttons .btn {
        margin: 0 auto 15px auto;
        display: block;
        max-width: 280px;
    }
    
    .btn-outline-primary {
        text-align: center;
        justify-content: center;
    }
}

/* ===== AJUSTE DO TEXTO INICIAL E ESPAÇAMENTOS NO MOBILE ===== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    /* Reduzir espaçamentos entre seções */
    .section-padding {
        padding: 40px 0 !important;
    }
    
    #what-is-service {
        padding: 40px 0 !important;
    }
    
    #how-it-works {
        padding: 40px 0 !important;
    }
}


/* ===== NOVA SEÇÃO: O QUE É O SERVIÇO ===== */
#what-is-service {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

#what-is-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(32, 201, 151, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(23, 162, 184, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-description {
    position: relative;
    z-index: 2;
}

.service-highlight .badge {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.service-description h3 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(32, 201, 151, 0.1);
    border-color: rgba(32, 201, 151, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.feature-text h6 {
    font-weight: 600;
    margin: 0;
}

.service-stats {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(32, 201, 151, 0.1);
    border-color: rgba(32, 201, 151, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #20c997;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(32, 201, 151, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-highlight {
    background: rgba(32, 201, 151, 0.1);
    border: 1px solid rgba(32, 201, 151, 0.3);
    border-radius: 15px;
    padding: 15px 25px;
    display: inline-block;
}

/* ===== RESPONSIVIDADE DA NOVA SEÇÃO ===== */
@media (max-width: 768px) {
    .service-description h3 {
        font-size: 1.8rem;
    }
    
    .text-white-75 {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-highlight span {
        font-size: 1.1rem !important;
    }
}


/* ===================================
   VIDEO PLAYER MODAL STYLES
   =================================== */

/* Modal de Vídeo - Ativações na Loja */
#storeVideoModal .modal-content {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

#storeVideoModal .modal-header {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 200, 255, 0.05) 100%);
    padding: 1.5rem;
}

#storeVideoModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

#storeVideoModal .modal-body {
    padding: 0;
    background: #000;
}

#storeVideoModal .video-container {
    background: #000;
    position: relative;
}

#storeVideoModal video {
    background: #000;
    border: none;
}

/* Customização dos controles do vídeo */
#storeVideoPlayer::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

#storeVideoPlayer::-webkit-media-controls-play-button,
#storeVideoPlayer::-webkit-media-controls-volume-slider {
    filter: brightness(1.2) saturate(1.5);
}

#storeVideoModal .modal-footer {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 200, 255, 0.1) 100%);
    padding: 1.5rem;
}

#storeVideoModal .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#storeVideoModal .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

#storeVideoModal .btn-primary {
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border: none;
    transition: all 0.3s ease;
}

#storeVideoModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

/* Animação de entrada do modal */
#storeVideoModal.fade .modal-dialog {
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

#storeVideoModal.show .modal-dialog {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Loading spinner para vídeo */
#storeVideoPlayer:not([data-loaded]) {
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%2300d4ff" stroke-width="4" fill="none" stroke-dasharray="60 200" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"/></circle></svg>') center center no-repeat;
    background-size: 50px 50px;
}

/* Responsividade */
@media (max-width: 768px) {
    #storeVideoModal .modal-dialog {
        margin: 0.5rem;
    }
    
    #storeVideoModal .modal-title {
        font-size: 1.2rem;
    }
    
    #storeVideoModal .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    #storeVideoModal .modal-footer .btn {
        width: 100%;
    }
}

/* Efeito de brilho no botão "Vejam as ativações na loja" */
.store-button-new {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.store-button-new:hover::before {
    width: 300px;
    height: 300px;
}

.store-button-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    border-color: #00d4ff;
    color: #00d4ff;
}

.store-button-new i {
    transition: transform 0.3s ease;
}

.store-button-new:hover i.fa-arrow-down {
    animation: bounceArrow 0.6s ease infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}


