* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --secondary: #10B981;
    --success: #10B981;
    --danger: #EF4444;
    --bg-dark: #0F0F23;
    --bg-darker: #050510;
    --bg-card: #1A1A2E;
    --text-primary: #E5E7EB;
    --text-secondary: #9CA3AF;
    --border: #2D2D44;
    --gradient-start: #7C3AED;
    --gradient-end: #A78BFA;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-darker);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
    background: rgba(15, 15, 35, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
}

.nav-logo small {
    display: block;
    font-size: 0.7rem;
    font-weight: normal;
    color: var(--text-secondary);
    margin-top: -0.25rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gradient-end));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.btn-register {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F23 50%, #1A1A2E 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(124,58,237,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--text-primary);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.btn-hero {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.5);
}

/* Hero Image with Phone Images */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-tabela {
    position: absolute;
    width: 550px;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.95;
    animation: floatTabela 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45))
            drop-shadow(0 0 30px rgba(124, 58, 237, 0.3));
    transition: transform 0.3s ease, opacity 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.phone-main {
    position: relative;
    width: 280px;
    height: auto;
    max-height: 570px;
    object-fit: contain;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 30px rgba(124, 58, 237, 0.3));
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.phone-secondary {
    position: absolute;
    width: 240px;
    height: auto;
    max-height: 490px;
    object-fit: contain;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.85;
    animation: floatSecondary 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 20px rgba(124, 58, 237, 0.2));
    transition: transform 0.3s ease, opacity 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.phone-mockup:hover .phone-tabela {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.phone-mockup:hover .phone-main {
    transform: scale(1.02);
}

.phone-mockup:hover .phone-secondary {
    opacity: 1;
    transform: translateY(-50%) scale(1.02);
}

@keyframes floatTabela {
    0%, 100% {
        transform: translateY(-50%) translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) translateY(-10px) rotate(2deg);
    }
}

@keyframes floatSecondary {
    0%, 100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-15px);
    }
}

/* Responsive adjustments for phones */
@media (max-width: 768px) {
    .hero-image {
        height: 400px;
    }
    
    .phone-mockup {
        max-width: 550px;
    }
    
    .phone-tabela {
        width: 320px;
        max-height: 320px;
        left: -150px;
    }
    
    .phone-main {
        width: 220px;
        max-height: 450px;
    }
    
    .phone-secondary {
        width: 190px;
        max-height: 390px;
        right: -60px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 350px;
    }
    
    .phone-mockup {
        max-width: 380px;
    }
    
    .phone-tabela {
        width: 200px;
        max-height: 200px;
        left: -95px;
    }
    
    .phone-main {
        width: 180px;
        max-height: 370px;
    }
    
    .phone-secondary {
        width: 150px;
        max-height: 310px;
        right: -40px;
    }
}


        max-height: 370px;
    }
    
    .phone-secondary {
        width: 150px;
        max-height: 310px;
        right: -40px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-2deg);
    }
    75% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1400px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.stat-box {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.stat-box .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
    background: var(--bg-darker);
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    vertical-align: top;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.feature-item i {
    font-size: 0.8rem;
}

.feature-item.active {
    color: var(--text-primary);
}

.feature-item.active i {
    color: var(--secondary);
}

.feature-item.inactive {
    color: var(--text-secondary);
    opacity: 0.4;
}

.feature-item.inactive i {
    color: var(--danger);
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: var(--bg-dark);
}

.payment-grid-five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.payment-logo {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    min-height: 120px;
}

.payment-logo:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.payment-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.modal-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 2rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: start;
    min-width: 250px;
}

.cookie-text i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-accept-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-mockup {
        margin-top: 3rem;
    }

    .phone-1, .phone-3 {
        display: none;
    }

    .phone-2 {
        position: relative;
        left: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .stats-grid,
    .themes-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-button i {
        font-size: 2rem;
    }

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-accept-btn {
        width: 100%;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-width: 420px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }
}
}


/* Themes Section */
.themes-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.theme-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.theme-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.theme-preview {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s;
    padding: 10px;
}

.theme-card:hover .theme-preview img {
    transform: scale(1.1);
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.theme-card:hover .theme-overlay {
    opacity: 1;
}

.theme-overlay i {
    font-size: 2.5rem;
    color: white;
}

.theme-info {
    padding: 1.5rem;
    text-align: center;
}

.theme-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Modal Improvements */
.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s;
    position: relative;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.modal-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    margin-top: 0.5rem;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

.modal-footer {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-footer a:hover {
    text-decoration: underline;
    color: var(--gradient-end);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .payment-grid-five {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid,
    .stats-grid,
    .themes-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid-five {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-button i {
        font-size: 2rem;
    }

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-accept-btn {
        width: 100%;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-width: 420px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }
}


/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.footer-title {
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gradient-end));
    border-radius: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.faq-question i:first-child {
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-question h4 {
    flex: 1;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 4.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Terms Page */
.terms-section {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.terms-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.terms-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.terms-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.terms-block h2 i {
    font-size: 1.5rem;
}

.terms-block h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.terms-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-block ul li {
    color: var(--text-secondary);
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
}

.terms-block ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.warning-block {
    border-color: var(--warning);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.important-notice {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.important-notice i {
    color: var(--danger);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.important-notice p {
    margin: 0;
    color: var(--text-primary);
}

.warning-text {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-text i {
    color: var(--warning);
}

.contact-block {
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    border: none;
}

.contact-block h2,
.contact-block p,
.contact-block ul li {
    color: white;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-list li::before {
    display: none;
}

.contact-list i {
    font-size: 1.3rem;
}

.terms-acceptance {
    margin-top: 3rem;
}

.acceptance-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.1));
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.acceptance-box > i {
    font-size: 3rem;
    color: var(--primary);
}

.acceptance-box h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.acceptance-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.acceptance-date {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Terms */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }

    .terms-header h1 {
        font-size: 1.8rem;
    }

    .terms-block {
        padding: 1.5rem;
    }

    .terms-block h2 {
        font-size: 1.4rem;
    }

    .terms-block h3 {
        font-size: 1.1rem;
    }

    .acceptance-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Notification Toast */
.notify-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notify-toast i:first-child {
    font-size: 1.5rem;
}

.notify-toast span {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.notify-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s;
}

.notify-close:hover {
    color: var(--text-primary);
}

.notify-success {
    border-left: 4px solid var(--success);
}

.notify-success i:first-child {
    color: var(--success);
}

.notify-error {
    border-left: 4px solid var(--danger);
}

.notify-error i:first-child {
    color: var(--danger);
}

.notify-warning {
    border-left: 4px solid var(--warning);
}

.notify-warning i:first-child {
    color: var(--warning);
}

.notify-info {
    border-left: 4px solid var(--primary);
}

.notify-info i:first-child {
    color: var(--primary);
}

@media (max-width: 768px) {
    .notify-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}


/* ========================================
   AUTH MODAL STYLES
   ======================================== */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 1rem;
}

.auth-modal.active {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-box {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.auth-modal.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.auth-form input {
    padding: 0.75rem;
    background: var(--bg-darker);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-link:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(-3px);
}

/* Mobile Responsive for Modals */
@media (max-width: 768px) {
    .modal-box {
        padding: 1.5rem;
        max-width: 95%;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-header p {
        font-size: 0.85rem;
    }
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ======================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0.875rem 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .features {
        padding: 60px 0;
    }

    .stats {
        padding: 50px 0;
    }

    .pricing {
        padding: 40px 0;
    }

    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-section {
        padding: 60px 0;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navbar Mobile */
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-logo small {
        font-size: 0.65rem;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero Mobile */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .hero-image {
        height: 400px;
    }

    .phone-frame {
        width: 240px;
        height: 490px;
    }

    .phone-notch {
        width: 110px;
        height: 22px;
    }

    .screen-content {
        padding: 35px 15px 15px;
    }

    .screen-header {
        padding: 12px;
        margin-bottom: 20px;
    }

    .screen-header i {
        font-size: 1.1rem;
    }

    .screen-header span {
        font-size: 0.95rem;
    }

    .screen-stats {
        gap: 15px;
        padding: 12px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    /* Features Mobile */
    .features {
        padding: 50px 0;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    /* Stats Mobile */
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-box {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .stat-box .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-box .stat-icon i {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Pricing Mobile */
    .pricing {
        padding: 40px 0;
    }

    .pricing-grid-two {
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-header {
        margin-bottom: 1rem;
    }

    .pricing-title {
        font-size: 1rem;
    }

    .pricing-description {
        font-size: 0.8rem;
    }

    .pricing-price {
        margin-bottom: 0.875rem;
    }

    .price-currency {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-period {
        font-size: 0.8rem;
    }

    .pricing-button {
        padding: 0.65rem;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .pricing-features {
        gap: 0.4rem;
    }

    .feature-item {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .feature-item i {
        font-size: 0.75rem;
    }

    /* Themes Mobile */
    .themes-section {
        padding: 50px 0;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .theme-preview {
        height: 200px;
    }

    .theme-info {
        padding: 1.25rem;
    }

    .theme-info h4 {
        font-size: 1rem;
    }

    /* Payment Methods Mobile */
    .payment-methods {
        padding: 50px 0;
    }

    .payment-grid-five {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-logo {
        padding: 1.5rem;
        min-height: 100px;
    }

    .payment-name {
        font-size: 1rem;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 50px 0;
    }

    .faq-grid {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }

    .faq-question i:first-child {
        font-size: 1.25rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-toggle {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem 3.5rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 0;
        margin-top: 60px;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .footer-logo-img {
        width: 32px;
        height: 32px;
    }

    .footer-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact li {
        gap: 0.6rem;
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .footer-contact i {
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    /* Buttons Mobile */
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-button i {
        font-size: 1.75rem;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top i {
        font-size: 1.25rem;
    }

    /* Cookie Consent Mobile */
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1rem;
        max-width: none;
    }

    .cookie-content {
        gap: 0.75rem;
    }

    .cookie-text {
        gap: 0.75rem;
        min-width: auto;
    }

    .cookie-text i {
        font-size: 1.25rem;
    }

    .cookie-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .cookie-accept-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
        border-radius: 16px;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .modal-header {
        margin-bottom: 1.25rem;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-header p {
        font-size: 0.85rem;
    }

    .modal-form {
        gap: 0.875rem;
    }

    .form-row {
        gap: 0.75rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .form-group input {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    .modal-submit-btn {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .modal-footer {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.8rem;
    }

    /* Auth Modal Mobile */
    .auth-modal {
        padding: 0.75rem;
    }

    .modal-box {
        padding: 1.5rem;
        max-width: 95%;
    }

    .auth-form {
        gap: 0.875rem;
    }

    .auth-form label {
        font-size: 0.85rem;
    }

    .auth-form input {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .btn-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }

    /* Notification Mobile */
    .notify-toast {
        top: 80px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        padding: 0.875rem 1rem;
    }

    .notify-toast i:first-child {
        font-size: 1.25rem;
    }

    .notify-toast span {
        font-size: 0.85rem;
    }

    /* Terms Page Mobile */
    .terms-section {
        padding: 100px 0 50px;
    }

    .terms-header {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .terms-header h1 {
        font-size: 1.5rem;
    }

    .terms-date {
        font-size: 0.85rem;
    }

    .terms-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .terms-block h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        gap: 0.75rem;
    }

    .terms-block h2 i {
        font-size: 1.25rem;
    }

    .terms-block h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem;
    }

    .terms-block p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .terms-block ul li {
        padding: 0.6rem 0 0.6rem 1.75rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .important-notice {
        padding: 1rem;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .important-notice i {
        font-size: 1.25rem;
    }

    .important-notice p {
        font-size: 0.85rem;
    }

    .warning-text {
        padding: 0.875rem;
        gap: 0.6rem;
        margin: 0.75rem 0;
        font-size: 0.85rem;
    }

    .warning-text i {
        font-size: 1.1rem;
    }

    .contact-block {
        padding: 1.5rem;
    }

    .contact-list {
        gap: 0.75rem;
    }

    .contact-list li {
        gap: 0.75rem;
        font-size: 1rem;
    }

    .contact-list i {
        font-size: 1.1rem;
    }

    .terms-acceptance {
        margin-top: 2rem;
    }

    .acceptance-box {
        padding: 1.5rem;
        gap: 1rem;
    }

    .acceptance-box > i {
        font-size: 2rem;
    }

    .acceptance-box h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .acceptance-box p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .acceptance-date {
        font-size: 0.85rem;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1.1rem;
    }

    .nav-logo small {
        display: none;
    }

    .btn-login,
    .btn-register {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn-hero {
        padding: 0.7rem 1.75rem;
        font-size: 0.9rem;
    }

    .phone-frame {
        width: 200px;
        height: 410px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 3rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .whatsapp-button,
    .scroll-top {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 1.25rem;
    }

    .modal-header h2 {
        font-size: 1.15rem;
    }

    .terms-header h1 {
        font-size: 1.35rem;
    }

    .terms-block {
        padding: 1.25rem;
    }

    .terms-block h2 {
        font-size: 1.15rem;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0.65rem 0.75rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }

    .btn-login,
    .btn-register {
        padding: 0.45rem 0.65rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn-hero {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }

    .phone-frame {
        width: 180px;
        height: 370px;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-description {
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 0.875rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    .stat-box {
        padding: 0.875rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 0.875rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 0.875rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 0.875rem 0.875rem 2.75rem;
        font-size: 0.8rem;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .whatsapp-button,
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 12px;
    }

    .whatsapp-button {
        left: 12px;
    }

    .scroll-top {
        right: 12px;
    }

    .cookie-consent {
        padding: 0.875rem;
    }

    .modal-content {
        padding: 1rem;
    }

    .terms-block {
        padding: 1rem;
    }
}
