:root {
    --bg-color: #F8FAFC;
    --card-bg-color: #FFFFFF;
    --text-color: #0F172A;
    --primary-color: #2563EB;
    --primary-hover-color: #1D4ED8;
    --border-color: #E2E8F0;
    --shadow-color: rgba(15, 23, 42, 0.05);
    --font-family: 'Inter', sans-serif;
}

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

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

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

.container {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--card-bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-text {
    max-width: 720px;
    margin: 0 auto 2rem auto;
    text-align: center;
    color: #475569;
}

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


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--primary-hover-color);
    color: #FFF;
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #FFF;
}



.header {
    background-color: var(--card-bg-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
}

.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.age-badge {
    font-weight: 600;
    background-color: red;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}



.main-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1rem;
}

.main-nav.mobile-active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.main-nav.mobile-active .nav-list a {
    font-size: 1.1rem;
}



.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    padding: 2rem 0;
    background: url('../img/hero.png') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
}

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

.hero h1 {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.hero .btn-outline {
    color: #FFF;
    border-color: #FFF;
}

.hero .btn-outline:hover {
    background-color: #FFF;
    color: var(--primary-color);
}



.icon-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.icon-card p {
    color: #64748b;
}



.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    background: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}


.section-disclaimer {
    text-align: center;
    margin: -2rem auto 3rem;
    padding: 0.75rem;
    background-color: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #4338ca;
    border-radius: 8px;
    max-width: 700px;
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.brand-card {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-header img {
    height: 40px;
}

.brand-rating {
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-rating small {
    color: #64748b;
    font-weight: 400;
}

.brand-description {
    color: #475569;
}

.brand-info h4,
.brand-payments h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.brand-info p {
    font-size: 0.9rem;
    color: #475569;
}

.brand-payments div {
    display: flex;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: #94a3b8;
}

.brand-actions {
    margin-top: auto;
}

.brand-actions .btn {
    width: 100%;
}



.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    object-fit: cover;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #475569;
    margin-bottom: 1rem;
    border: none;
}

.testimonial-card cite {
    font-weight: 600;
    font-style: normal;
}



.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info ul {
    list-style: none;
    margin-top: 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.responsible-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.external-link {
    background-color: #f1f5f9;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    max-width: 350px;
}

.external-link:hover {
    background-color: #e2e8f0;
    color: var(--text-color);
}



.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-about .footer-logo {
    margin: 0 auto 1rem;
}

.footer-about h2 {
    font-size: 26px;
    font-weight: 700;
}

.footer-links h4,
.footer-social h4 {
    color: #FFF;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: #FFF;
}

.footer-social a {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin: 0 0.5rem;
}

.footer-social a:hover {
    color: #FFF;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg-color);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 10px var(--shadow-color);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg-color);
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
}

.modal-options {
    margin: 1.5rem 0;
}

.switch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:disabled+.slider {
    background-color: #94a3b8;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}





@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .main-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .main-nav.mobile-active {
        display: block;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .main-nav.mobile-active .nav-list {
        flex-direction: row;
    }

    .icon-cards {
        flex-direction: row;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .timeline-item {
        width: calc(50% - 1rem);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .responsible-links {
        flex-direction: row;
        justify-content: center;
    }

    .external-link {
        width: auto;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .footer-about .footer-logo {
        margin: 0 0 1rem;
    }

    .cookie-container {
        flex-direction: row;
    }
}


@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (min-width: 1280px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.disclaimer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    margin: 50px auto;
}

.disclaimer-icons img {
    height: 60px;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.disclaimer-icons img:hover {
    transform: scale(1.1);
}

.disclaimer-icons a:hover {
    filter: brightness(1.2);
}

.age-gate {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, .9);
    z-index: 9999;
}

.age-gate[hidden] {
    display: none;
}

.age-gate__panel {
    width: min(680px, 92vw);
    background: #0f172a;
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}

.age-gate__title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 700;
}

.age-gate__text {
    margin: 0 0 18px;
    font-size: 0.985rem;
    line-height: 1.55;
    color: #f8fafc;
}

.age-gate__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    cursor: pointer;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform .06s ease, opacity .2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
}

.btn--primary:hover {
    opacity: .92;
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.btn--ghost:hover {
    border-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.no-scroll {
    overflow: hidden;
}

.legal-content-container h1 {
    margin-bottom: 24px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
}

.legal-content-container h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0F172A;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 8px;
}

.legal-content-container p,
.legal-content-container ul li {
    line-height: 1.6;
    color: #334155;
    margin-bottom: 16px;
}

.legal-content-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.legal-content-container ul li {
    margin-bottom: 8px;
}

.legal-content-container a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}

.legal-content-container a:hover {
    text-decoration: underline;
}

.legal-content-container strong {
    color: #0F172A;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-table th {
    background-color: #F8FAFC;
    font-weight: 600;
    color: #0F172A;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #F8FAFC;
}