:root {
    --bg-body: #0f172a;
    --bg-surface: #1e293b;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --primary: #10b981;
    --primary-glow: #34d399;
    --primary-dark: #059669;
    --secondary: #64748b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #3b82f6;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gradient-main: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-card: linear-gradient(145deg, #1e293b, #0f172a);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(16, 185, 129, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gradient-main);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--secondary);
    font-weight: 600;
    border-radius: 50px;
    margin-left: 10px;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.top-warning {
    background-color: #000;
    color: #64748b;
    text-align: center;
    font-size: 0.8rem;
    padding: 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.brand-logo strong {
    color: var(--primary);
}

.menu-items {
    display: flex;
    gap: 30px;
}

.menu-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.menu-link:hover, .menu-link.active {
    color: var(--primary);
}

.nav-checkbox, .nav-burger {
    display: none;
}

.banner-principal {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-text .subtitle {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.banner-text h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.banner-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.security-seal {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-surface);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-seal i {
    font-size: 1.5rem;
    color: var(--primary);
}

.security-seal span {
    font-weight: 700;
    font-size: 0.9rem;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.benefits-section {
    padding: 100px 0;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-box {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-box:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.benefit-box h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.benefit-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.highlight-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.5);
    margin: 40px 0;
}

.highlight-wrapper {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning);
    color: #000;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.highlight-content {
    display: flex;
    flex-direction: row;
    padding: 40px;
    gap: 40px;
    align-items: center;
}

.operator-logo {
    flex: 0 0 300px;
}

.operator-logo img {
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.operator-details {
    flex: 1;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.score {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.stars {
    color: var(--warning);
}

.review-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.specs-list li i {
    color: var(--primary);
}

.btn-play {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.btn-play:hover {
    background: var(--primary-glow);
    box-shadow: var(--shadow-glow);
}

.company-section {
    padding: 100px 0;
}

.company-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.company-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mission-points {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.point {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.company-img {
    position: relative;
}

.company-img img {
    border-radius: var(--radius);
    filter: brightness(0.8);
}

.experience-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-card span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.experience-card p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-muted);
}

.reviews-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-surface);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-header h4 {
    font-size: 1rem;
    margin: 0;
}

.location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-body p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stars-mini {
    color: var(--warning);
    font-size: 0.9rem;
}

.legal-warning {
    padding: 40px 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
    color: var(--danger);
}

.warning-content h3 {
    color: var(--danger);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.warning-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.main-footer {
    background: #0b0e14;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary);
}

.brand-col p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .banner-grid,
    .company-layout,
    .highlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-grid {
        gap: 40px;
    }

    .banner-visual {
        order: -1;
    }

    .highlight-content {
        flex-direction: column;
    }

    .operator-logo {
        flex: auto;
        max-width: 200px;
    }

    .rating-block, .specs-list {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-burger {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .menu-items {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-checkbox:checked ~ .menu-items {
        max-height: 400px;
    }

    .menu-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .banner-text h1 {
        font-size: 2.5rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .company-img {
        margin-top: 20px;
    }
}