/* Juntter Custom Styles */

:root {
    --primary-color: #FFCF00;
    --secondary-color: #ffb800;
    --dark-color: #000000;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* CORREÇÃO PARA SCROLL INDESEJADO - GARANTIR QUE A PÁGINA SEMPRE COMEÇA NO TOPO */
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Garantir que o wrapper não cause overflow */
.wrapper {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Remove AdminLTE sidebar spacing - CORREÇÃO ESPECÍFICA */
body.layout-top-nav .content-wrapper {
    margin-left: 0 !important;
}

.main-sidebar {
    display: none !important;
}

.wrapper .content-wrapper {
    margin-left: 0 !important;
}

/* Navbar Styles */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.navbar-brand span {
    color: var(--dark-color);
    font-weight: 800;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
}

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

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-60px) rotate(240deg); }
}

/* Login Container */
.login-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Recovery Container */
.recovery-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px;
}

.recovery-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.recovery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Header Styles */
.login-header, .recovery-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo, .recovery-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--dark-color);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.3);
}

.login-title, .recovery-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.login-subtitle, .recovery-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

/* Input Wrapper para manter ícone junto com o input */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px 20px 15px 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

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

.form-control.is-valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

/* GARANTIR QUE AS MENSAGENS DE ERRO DO BACKEND SEJAM EXIBIDAS */
.invalid-feedback {
    display: block !important;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

.is-invalid ~ .invalid-feedback {
    display: block !important;
}

/* Garantir que as mensagens de erro sejam visíveis */
.form-group .invalid-feedback {
    display: block !important;
    position: relative;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border-left: 3px solid #dc3545;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.form-control:focus + .input-icon {
    color: var(--primary-color);
}

.form-control.is-valid + .input-icon {
    color: #28a745;
}

.form-control.is-invalid + .input-icon {
    color: #dc3545;
 
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn-login, .btn-recovery {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 0;
    border-radius: 12px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login::before, .btn-recovery::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.5s ease;
}

.btn-login:hover::before, .btn-recovery:hover::before {
    left: 100%;
}

.btn-login:hover, .btn-recovery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    color: var(--dark-color);
}

.btn-login:disabled, .btn-recovery:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 8px;
}

/* Links */
.form-links {
    text-align: center;
    margin-top: 25px;
}

.forgot-link, .back-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.forgot-link:hover, .back-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.back-link {
    color: #666;
    margin-top: 15px;
    display: inline-block;
}

.back-link:hover {
    color: var(--primary-color);
}

/* Remember Me */
.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.custom-checkbox {
    position: relative;
    margin-right: 12px;
}

.custom-checkbox input {
    opacity: 0;
    position: absolute;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--dark-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox input:checked + .checkmark::after {
    opacity: 1;
}

/* Success State */
.success-state {
    display: none;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.success-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* PARTÍCULAS FLUTUANTES */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-60px) rotate(240deg); }
}

/* LANDING PAGE STYLES */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 70%, var(--primary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section span {
    color: var(--primary-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-hero::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.5s ease;
}

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

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--dark-color);
    text-decoration: none;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: transparent;
    box-shadow: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    line-height: 1.1;
    word-break: break-word;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #222;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.3);
}

.benefit-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 20px 0;
}

/* Estilos para planos com seletor dinâmico */
.plan-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-badge.customized {
    background: var(--dark-color);
    color: var(--primary-color);
}

.pricing-card {
    position: relative;
    padding-top: 50px;
}

.plan-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.rate-toggle {
    margin-bottom: 15px;
}

.rate-toggle span {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.payment-selector {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-selector:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.price-display {
    text-align: center;
    margin: 20px 0;
}

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

.price-display-dual {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.price-item {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-item:first-child {
    border-color: var(--primary-color);
    background: rgba(255, 193, 7, 0.1);
}

.price-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

.rate-selector {
    text-align: center;
    margin-bottom: 20px;
}

.rate-selector span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

/* Garante altura uniforme dos cards */
.pricing-card .pricing-rates {
    flex-grow: 1;
}

.pricing-card ul {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card .btn {
    margin-top: auto;
}

.price-variable {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c757d;
}

.additional-info {
    text-align: center;
    margin-bottom: 20px;
}

.additional-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.fixed-rates {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-bottom: 20px;
}

.fixed-rates .rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f8f9fa;
}

.fixed-rates .rate-item:last-child {
    border-bottom: none;
}

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

.fixed-rates .rate-item span {
    flex: 1;
    margin-left: 10px;
    font-size: 0.9rem;
    color: #666;
}

.fixed-rates .rate-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.custom-features {
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.feature-item span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary-color);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin: 20px 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #333 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffd600" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23ffd600" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23ffd600" opacity="0.1"/></svg>');
}

/* Footer */
.footer-juntter {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-section h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.6);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .main-header {
        padding: 5px 0;
    }
    .main-header a.navbar-brand {
        padding-left: 10px !important;
    }
    
    .main-header .navbar-brand img {
        height: 28px !important;
    }
    
    .main-header .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .main-header .btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    /* Login/Recovery Cards */
    .login-card, .recovery-card {
        padding: 30px 20px;
        margin: 15px;
        border-radius: 16px;
    }
    
    .login-title, .recovery-title {
        font-size: 1.6rem;
    }
    
    .login-subtitle, .recovery-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-title { 
        font-size: 2rem; 
        margin-bottom: 20px;
    }
    
    .hero-subtitle { 
        font-size: 1rem; 
        margin-bottom: 30px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Sections */
    .section { 
        padding: 40px 0; 
    }
    
    .section-title { 
        font-size: 1.8rem; 
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Cards */
    .benefit-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .pricing-card.popular { 
        transform: none; 
    }
    
    .price {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    /* Stats */
    .stats-section {
        padding: 40px 0;
        margin-bottom: 30px;
        height: auto;
    }

    .stats-section .container .row {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

 
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-juntter {
        padding: 30px 0 15px;
    }
    
    .footer-section h5 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-section a {
        font-size: 0.85rem;
        line-height: 1.8;
    }
    
    /* FAQ */
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 15px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 2rem !important;
    }
    
    .cta-section p {
        font-size: 1.1rem !important;
    }
    
    /* Particles container */
    .particles-container {
        height: 70vh;
    }
}


