@import "./colors.css";

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

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    text-decoration: none;
}

section {
    padding: 100px 20px;
}

#date {
    display: inline;
    margin: 0;
}

.title-shopping-categories {
    text-align: center;
}

/* UTILS */

.max-w-600 {
    max-width: 600px !important;
}

.max-w-700 {
    max-width: 700px !important;
}

.max-w-800 {
    max-width: 800px !important;
}

.max-w-900 {
    max-width: 900px !important;
}

.max-w-1000 {
    max-width: 1000px !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.highlight {
    color: var(--color-highlight);
    font-weight: 700;
}

.swal2-confirm {
    background-color: var(--color-primary) !important;
}

/*  NAVBAR */

.navbar {
    z-index: 9999;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    transition:
        height 0.3s,
        background-color 0.3s,
        box-shadow 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
}

.navbar-container {
    max-width: 1350px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.navbar-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* MENU DESKTOP */

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
}

.navbar-menu a {
    position: relative;
    color: var(--color-tertiary);
    text-decoration: none;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    opacity: 0.9;
    padding-bottom: 4px;
    transition: opacity 0.2s;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.25s ease;
}

.navbar-menu a:hover {
    color: var(--color-tertiary);
    opacity: 1;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* ACTIONS DESKTOP */

.navbar-actions {
    display: flex;
    gap: 12px;
}

/* Estado após scroll */

.navbar.navbar--shrink {
    background-color: var(--color-navbar-shrink);
    height: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* Logo menor */

.navbar.navbar--shrink .navbar-logo img {
    height: 30px;
}

/* HAMBURGER MOBILE */

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
}

.navbar-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-tertiary);
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.2s ease,
        background-color 0.3s ease;
    transform-origin: center;
}

/* ESTADO ATIVO */

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MENU MOBILE */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 45px 34px;
    transform: translateY(-100%);
    transition: transform 0.35s ease-in-out;
    z-index: 9998;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.mobile-menu.active {
    top: 60px;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    color: var(--color-tertiary);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-decoration: none;
}

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

.mobile-actions {
    display: none;
    gap: 12px;
    margin-top: 20px;
}

/* =========================
   RESPONSIVIDADE NAVBAR
========================= */

@media (max-width: 1160px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 550px) {
    .navbar-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }
}

@media (max-width: 450px) {
    .mobile-actions {
        flex-direction: column;
    }

    .mobile-actions .btn-gradient {
        color: var(--color-white);
    }
}

/* Btns */

.btn {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    color: var(--color-white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease,
        background-color 0.25s ease;
}

/*  TAMANHOS */

.btn-sm {
    padding: 8px 18px;
}

.btn-md {
    padding: 16px 34px;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* VARIAÇÕES DE COR */

.btn-hero {
    background: var(--color-bg-hero);
}

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

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

.btn-tertiary {
    background: var(--color-tertiary);
}

.btn-tertiary:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.btn-gradient {
    background: var(--color-bg-gradient);
}

.btn-gradient:hover {
    color: var(--color-white);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-highlight);
    color: var(--color-highlight);
}

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

/* HOVER */

.btn-hover-scale:hover {
    transform: scale(1.05);
}

.btn-hover-float:hover {
    transform: translateY(-4px);
}

/* SOMBRAS */

.btn-shadow-sm {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-shadow-md {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-shadow-lg:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   RESPONSIVIDADE BTNS
========================= */

@media (max-width: 771px) {
    .btn-md {
        padding: 12px 25px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.grecaptcha-badge {
    bottom: 20px !important;
    left: 20px !important;
    filter: brightness(0.8);
    opacity: 0.85;
    padding: 4px;
}

/* Whatsapp Float */

.whatsapp-float {
    z-index: 99999;
    position: fixed;
    bottom: 25px;
    right: 25px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 40px;
    background-color: var(--color-primary-hover);
    transition:
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ==============================
   RESPONSIVIDADE WHATSAPP FLOAT
================================= */

@media (max-width: 771px) {
    .whatsapp-float {
        padding: 10px;
        font-size: 12px;
    }
}

/* Scroll Top */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 42px;
    height: 42px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
}

/* ==========================
   RESPONSIVIDADE SCROLL TOP
============================= */

@media (max-width: 771px) {
    .scroll-top-btn {
        width: 28px;
        height: 28px;
    }
}

/* Banner */

.hero-associate {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom,
            rgba(34, 153, 101, 0.6),
            rgba(16, 66, 45, 0.8));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-associate {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(4, 104, 60, 0.6),
            rgba(1, 105, 62, 0.6));
}

.hero-associate .content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.video-hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    transform: translateY(-20px);
    color: var(--color-white);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1.3rem, 2vw, 1.125rem);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-scroll {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll svg {
    animation: scrollDown 1.5s infinite;
}

/* =========================
   Animação de scroll
========================= */

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ================================
   RESPONSIVIDADE BANNER
================================ */

@media (max-width: 991px) {
    .hero-content {
        transform: translateY(0px);
    }
}

/* ================================
   CONHEÇA O CASHNET
================================ */

#know-cashnet {
    background: var(--color-white-v2);
    color: var(--color-white);
    text-align: center;
}

.cashnet-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cashnet-video-card {
    background: url("/assets/landing-pages/associates/img/thumbnail-cashnetclub.png") center center / cover no-repeat;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cashnet-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.cashnet-video-card>* {
    position: relative;
    z-index: 2;
}

.cashnet-play {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(50px, 8vw, 120px);
    height: clamp(50px, 8vw, 120px);
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: var(--color-primary);
    cursor: pointer;
    position: relative;
    z-index: 10;
    margin: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.cashnet-play i {
    transition: transform 0.25s ease;
}

.cashnet-play:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    color: var(--color-white);
    background: var(--color-primary);
}

.cashnet-play:hover i {
    transform: scale(1.1);
}

.cashnet-swal.swal2-modal {
    padding: 0;
    overflow: hidden;
}

.cashnet-swal .swal2-html-container {
    padding: 0;
}

.cashnet-swal {
    padding: 0;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
}

.cashnet-swal .swal2-close {
    box-shadow: none !important;
    color: var(--color-white);
    font-size: 1.8rem;
}

.cashnet-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-tertiary);
}

/* O que é o cashnet */

#what-is-cashnet {
    background: var(--color-white);
}

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

.cashnet-header {
    text-align: center;
    margin-bottom: 50px;
}

.cashnet-title {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-tertiary);
}

.cashnet-subtitle {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--color-font-p);
    margin: 30px 0 50px;
}

.cashnet-divider {
    display: inline-block;
    width: 100px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.cashnet-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.cashnet-icon * {
    width: 32px;
    height: 32px;
}

.cashnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.cashnet-text p {
    font-size: 1.25rem;
    color: var(--color-font-p);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cashnet-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.cashnet-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-image);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.cashnet-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.cashnet-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
}

.feature .icon {
    width: 70px;
    height: 70px;
    background: var(--color-bg-feature);
    color: var(--color-highlight);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.feature:hover .icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.feature h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-tertiary);
}

.feature p {
    font-size: 0.95rem;
    color: var(--color-font-p);
}

/* ================================
   RESPONSIVIDADE O QUE é O CASHNET
=================================== */

@media (max-width: 992px) {
    .cashnet-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 771px) {
    .cashnet-content {
        gap: 30px;
    }

    .cashnet-title {
        font-size: 2rem;
    }

    .cashnet-subtitle {
        font-size: 1rem;
        margin: 20px 0 40px;
    }

    .cashnet-text p {
        font-size: 0.95rem;
    }

    .cashnet-header h2 {
        font-size: 2.2rem;
    }

    .cashnet-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    #what-is-cashnet {
        padding: 70px 16px;
    }

    .cashnet-features {
        grid-template-columns: 1fr;
    }
}

/* Selecionando os melhores */

#selected {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-selected-bests);
    color: var(--color-white);
}

#selected::before,
#selected::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: floatVertical 9s ease-in-out infinite;
}

/* Grupo 1 */
#selected::before {
    top: 40%;
    left: 18%;
    box-shadow:
        80px 40px rgba(255, 255, 255, 0.25),
        140px -60px rgba(255, 255, 255, 0.2),
        -60px 90px rgba(255, 255, 255, 0.15),
        200px 120px rgba(255, 255, 255, 0.2),
        -120px -80px rgba(255, 255, 255, 0.18),
        300px -40px rgba(255, 255, 255, 0.15);
}

/* Grupo 2 */
#selected::after {
    bottom: 35%;
    right: 22%;
    animation-delay: -4.5s;
    box-shadow:
        -90px -60px rgba(255, 255, 255, 0.25),
        -160px 40px rgba(255, 255, 255, 0.2),
        70px -110px rgba(255, 255, 255, 0.15),
        -220px 100px rgba(255, 255, 255, 0.2),
        130px 80px rgba(255, 255, 255, 0.18),
        -300px -30px rgba(255, 255, 255, 0.15);
}

/* Animação vertical */
@keyframes floatVertical {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-120px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

#selected .container {
    text-align: center;
    z-index: 1;
}

.selected-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
}

.selected-description p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 18px;
    opacity: 0.95;
}

.selected-description strong {
    font-size: 1.5rem;
    line-height: 2rem;
}

.selected-description .fw-semibold {
    font-weight: 600;
    margin-top: 25px;
}

/* Contato cashnet */

#contact {
    min-height: 100vh;
    background-color: var(--color-white-v2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 900px;
}

.cashnet-form {
    background: var(--color-white);
    border-radius: 24px;
    padding: 0 40px 40px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color-tertiary);
}

.form-group svg {
    color: var(--color-tertiary);
}

.form-group input {
    width: 100%;
    height: 45px;
    background: var(--color-white);
    border: 1px solid var(--color-white-v3);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--color-tertiary);
    font-size: 1rem;
}

.form-group input::placeholder {
    color: var(--color-grey);
}

.form-upload {
    margin-bottom: 40px;
}

.form-upload label {
    font-weight: 600;
}

.upload-hint {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin: 8px 0 20px;
}

.upload-box {
    border: 2px dashed var(--color-primary);
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    display: block;
    color: var(--color-grey);
}

.upload-icon {
    font-size: 2rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
}

.upload-box small {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
}

.preview-container {
    margin-top: 10px;
    padding: 12px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    background-color: var(--color-white-v2);
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.preview-container p {
    color: var(--color-font-p);
}

.preview-container .file-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--color-highlight);
    border-radius: 8px;
    max-width: 500px;
    background-color: var(--color-white);
}

.preview-container .file-preview i {
    font-size: 24px;
}

.preview-container .file-preview span {
    font-weight: bold;
    color: var(--color-highlight);
    word-break: break-word;
}

/* =====================================
   RESPONSIVIDADE FORMULARIO DE CONTATO
======================================== */

@media (max-width: 771px) {
    .upload-box span {
        font-size: 0.95rem;
    }

    .cashnet-form {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input {
        font-size: 0.8rem;
    }

    .form-upload {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    #contact {
        padding: 60px 16px;
    }

    .cashnet-form {
        padding: 30px 20px;
        border-radius: 18px;
    }
}

/* Conhecendo o shopping */

#know-shopping {
    background: var(--color-bg-section);
    color: var(--color-white);
}

.shopping-actions {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-bottom: 50px;
}

.shopping-card {
    flex: 1;
    background: var(--color-bg-shopping-card);
    border: none;
    border-radius: 16px;
    padding: 30px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.shopping-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.shopping-content {
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.shopping-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.shopping-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-image);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.shopping-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.shopping-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.category-card {
    background: var(--color-white);
    color: var(--color-black);
    width: 220px;
    height: 140px;
    border: 1px solid var(--color-white-v3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.category-card .icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.category-card p {
    margin: 0;
    font-weight: 600;
}

.nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    cursor: pointer;
}

/* =====================================
   RESPONSIVIDADE FORMULARIO DE CONTATO
======================================== */

@media (max-width: 992px) {
    .shopping-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .shopping-text {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 771px) {
    .shopping-actions {
        flex-direction: column;
    }

    .shopping-categories {
        flex-wrap: wrap;
    }

    .shopping-content {
        margin: 0 auto 40px;
    }

    .shopping-card {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .category-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Pq somos diferentes */

#differences {
    background: var(--color-white);
}

.differences-subtitle {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--color-font-p);
    margin: 30px 0 50px;
}

.differences-actions {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-bottom: 4rem;
}

.differences-btn {
    flex: 1;
    background: linear-gradient(135deg, #2dbd7f, #15573b);
    border: none;
    border-radius: 16px;
    padding: 40px 30px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.differences-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.differences-btn .icon {
    width: 100%;
    text-align: start;
    margin-bottom: 1rem;
}

.differences-btn p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.differences-btn span {
    color: rgb(255 255 255 / 0.9);
    text-align: start;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 500;
}

/* =====================================
   RESPONSIVIDADE DIFERENCIAIS
======================================== */

@media (max-width: 1024px) {
    .differences-actions {
        flex-wrap: wrap;
    }

    .differences-btn {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 771px) {
    #differences {
        padding: 60px 16px;
    }

    .differences-subtitle {
        font-size: 1.1rem;
        line-height: 1.6rem;
        margin-bottom: 32px;
    }

    .differences-actions {
        flex-direction: column;
        gap: 20px;
    }

    .differences-btn {
        flex: 1;
        padding: 32px 24px;
    }

    .differences-btn p {
        font-size: 1.15rem;
    }

    .differences-btn span {
        font-size: 0.95rem;
        line-height: 1.5rem;
    }

    .differences-btn svg {
        width: 48px;
        height: 48px;
    }
}

/* Acesso exclusivo por convite */

#invitation {
    background: var(--color-bg-section-gradient);
    display: flex;
    align-items: center;
}

.invitation-section .container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.invitation-title {
    text-align: center;
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.invitation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.invitation-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: var(--color-white);
    backdrop-filter: blur(6px);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.invitation-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
}

.invitation-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.invitation-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

/* =====================================
   RESPONSIVIDADE CONVITES
======================================== */

@media (max-width: 771px) {
    .invitation-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .invitation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .invitation-card {
        padding: 30px 20px;
    }

    .invitation-card p {
        font-size: 0.95rem;
    }
}

/* Benefícios */

#benefits {
    background: var(--color-white);
}

#benefits .accordion-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: border 0.3s ease;
}

#benefits .accordion-item:hover {
    border: 2px solid var(--color-highlight);
}

#benefits .accordion-button {
    font-size: 1.125rem;
    line-height: 1.75rem;
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    background-color: var(--color-white);
    color: var(--color-tertiary);
    font-weight: 600;
}

#benefits .accordion-button:not(.collapsed) {
    color: var(--color-tertiary);
    box-shadow: none;
}

#benefits .accordion-body {
    padding: 0 1.75rem 1.75rem;
    color: var(--color-font-p);
}

#benefits .accordion-button:focus {
    box-shadow: none;
}

#benefits .benefits-cta {
    text-align: center;
    margin-top: 40px;
}

/* Propósito */

#purposes {
    background: var(--color-bg-section);
    color: var(--color-white);
}

.purpose-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.purpose-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.purpose-text {
    background: var(--color-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.purpose-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.purpose-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-image);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.purpose-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.purpose-stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--color-white);
    color: var(--color-black);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 14px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.stat-card strong {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 10px;
    display: block;
    color: var(--color-highlight);
}

.stat-card span {
    font-size: 0.95rem;
    opacity: 0.8;
}

.purpose-cta {
    margin-top: 70px;
    text-align: center;
}

/* ============================
   RESPONSIVIDADE PROPÓSITOS
=============================== */

@media (max-width: 900px) {
    .purpose-main {
        grid-template-columns: 1fr;
    }

    .purpose-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 717px) {
    .purpose-cta {
        margin-top: 40px;
        text-align: center;
    }
}

/* Faqs */

#faqs {
    background: var(--color-white);
}

#faqs .accordion-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: border 0.3s ease;
}

#faqs .accordion-item:hover {
    border: 2px solid var(--color-highlight);
}

#faqs .accordion-button {
    font-size: 1.125rem;
    line-height: 1.75rem;
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    background-color: var(--color-white);
    color: var(--color-tertiary);
    font-weight: 600;
}

#faqs .accordion-button:not(.collapsed) {
    color: var(--color-tertiary);
    box-shadow: none;
}

#faqs .accordion-body {
    padding: 0 1.75rem 1.75rem;
    color: var(--color-font-p);
}

#faqs .accordion-button:focus {
    box-shadow: none;
}

/* Footer */

.footer {
    background: var(--color-bg-section-gradient);
    color: var(--color-white);
    padding-top: 90px;
}

.footer-cta {
    text-align: center;
    padding: 0 20px 80px;
}

.footer-cta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 30px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.footer-content {
    max-width: 1350px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
    padding: 30px 20px;
    gap: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-left .logo {
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-left p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.25rem;
    opacity: 0.9;
}

.footer-center {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.footer-center a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.25rem;
    opacity: 0.9;
}

.footer-center a:hover {
    opacity: 1;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.footer-right .social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-weight: bold;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-right .social:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    padding: 30px 35px;
    opacity: 0.8;
}

/* ============================
   RESPONSIVIDADE FOOTER
=============================== */

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-center {
        flex-direction: column;
        gap: 12px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-left {
        align-items: center;
    }
}

@media (max-width: 1000px) {
    .title-shopping-categories {
        font-size: small;
    }
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
    width: 100%;
}

.grid-features .reveal {
    display: flex;
    height: 100%;
}

.feature {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06) !important;
}

.feature .icon-box {
    width: 64px;
    height: 64px;
    background: var(--color-bg-feature, #f8fafc);
    color: var(--color-highlight, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease, color 0.3s ease;
}

.feature:hover .icon-box {
    background: var(--color-primary, #0284c7);
    color: #ffffff;
}

.feature h3 {
    font-size: 1.15rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-tertiary, #1e293b);
}

.feature p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--color-font-p, #64748b);
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .grid-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .feature {
        padding: 2rem !important;
    }
}