@charset "UTF-8";
:root {
    --primary: #F5A623;
    --primary_2: #FFA726;
    --secondary: #0B1324;
    --bg: #F7F8FA;
    --text_dark: #111827;
    --text_light: #6B7280;
    --accent: #FFD700;
    --radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --max_width: 1200px;
    --carousel_gap: 20px;
    --carousel_speed: 40s;
    --section_padding: clamp(4rem, 8vw, 6rem) 1rem;
    --container_padding: 0 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', 'Manrope', sans-serif;
    background-color: var(--bg);
    color: var(--text_dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

section {
    padding: var(--section_padding);
}

.header,
.main,
.footer {
    width: 100%;
}

.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo img {
    width: 150px;
    height: auto;
}

.header__nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.header__nav-list {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    font-weight: 500;
    color: var(--text_dark);
    padding: 0.5rem 0;
    position: relative;
}

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

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
}

.header__cta {
    white-space: nowrap;
}

.header__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text_dark);
}

.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.header__mobile-menu.is-active {
    right: 0;
}

.header__mobile-close {
    align-self: flex-end;
    font-size: 1.5rem;
    color: var(--text_dark);
    margin-bottom: 2rem;
}

.header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.header__mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text_dark);
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid #eee;
}

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

.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #17233A 100%);
    color: white;
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero__container--reviews {
    grid-template-columns: 1fr 1fr;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero__badge {
    display: inline-block;
    background-color: rgba(245, 166, 35, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    align-self: flex-start;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.hero__title-highlight {
    color: var(--primary);
}

.hero__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero__trust-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
}

.hero__trust-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.hero__trust-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 500px;
    width: auto;
    object-fit: cover;
}

.stats {
    background-color: white;
}

.stats__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
    text-align: center;
}

.stats__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.stats__subtitle {
    font-size: 1.125rem;
    color: var(--text_light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats__card {
    background-color: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stats__card-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stats__card-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text_dark);
    margin-bottom: 0.5rem;
}

.stats__card-text {
    color: var(--text_light);
    font-size: 0.95rem;
}

.featured-reviews {
    background-color: var(--bg);
}

.featured-reviews__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
}

.featured-reviews__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.featured-reviews__subtitle {
    font-size: 1.125rem;
    color: var(--text_light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.featured-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text_dark);
}

.review-card__stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.review-card__tag {
    background-color: var(--bg);
    color: var(--text_light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap;
}

.review-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text_dark);
    line-height: 1.4;
}

.review-card__text {
    color: var(--text_light);
    line-height: 1.6;
    flex-grow: 1;
}

.review-card__screenshot {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-top: 0.5rem;
}

.benefits--dark {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2b4d 100%);
    color: white;
}

.benefits__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
}

.benefits__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.benefits__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary_2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__icon-inner {
    font-size: 1.75rem;
    color: white;
}

.benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.benefit-card__text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.more-reviews {
    background-color: white;
}

.more-reviews__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
}

.more-reviews__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.more-reviews__subtitle {
    font-size: 1.125rem;
    color: var(--text_light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.more-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text_dark);
}

.testimonial-card__stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-card__tag {
    background-color: white;
    color: var(--text_light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    align-self: flex-start;
}

.testimonial-card__text {
    color: var(--text_light);
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-card__screenshot {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
    margin-top: 0.5rem;
}

.cta-support {
    background: linear-gradient(135deg, var(--secondary) 0%, #17233A 100%);
    color: white;
    text-align: center;
}

.cta-support__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-support__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
}

.cta-support__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
}

.cta-support__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-support__reassurance {
    margin-top: 1rem;
}

.cta-support__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.cta-support__list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.cta-support__list-item i {
    color: var(--accent);
    font-size: 1.125rem;
}

.footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.85);
}

.footer__top {
    padding: var(--section_padding);
}

.footer__container {
    max-width: var(--max_width);
    margin: 0 auto;
    padding: var(--container_padding);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__column--brand {
    gap: 1rem;
}

.footer__logo img {
    width: 150px;
    height: auto;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__column-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

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

.footer__column--contact .button {
    align-self: flex-start;
}

.footer__bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 1rem;
}

.footer__copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.button--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary_2) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.3);
}

.button--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.button--secondary:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

.button--whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: var(--shadow);
}

.button--whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.button--large {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

.button--block {
    width: 100%;
}

@media (max-width: 1024px) {
    .hero__container {
        gap: 3rem;
    }
    .stats__grid,
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-reviews__grid,
    .more-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    .header__toggle {
        display: block;
    }
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__badge {
        align-self: center;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__trust-row {
        justify-content: center;
    }
    .stats__grid,
    .benefits__grid,
    .featured-reviews__grid,
    .more-reviews__grid {
        grid-template-columns: 1fr;
    }
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer__column--contact .button {
        align-self: stretch;
    }
}

@media (max-width: 640px) {
    .hero__actions .button,
    .cta-support__actions .button {
        width: 100%;
    }
    .button--large {
        padding: 0.875rem 1.5rem;
    }
    section {
        padding: clamp(3rem, 6vw, 4rem) 1rem;
    }
}
 /* css done */