@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* TROCA DE CORES */
:root {
    --white: #ffffff;
    --black: #1D1D1D;
    --text-color: #646464;
    --grey: #2E2E2E;

    --primary-color: #27ae60;
    /* Novo tom principal de verde */
    --dark-primary-color: #1e8449;
    /* Novo tom escuro de verde */
    --light-primary-color: #a9dfbf;
    /* Novo tom claro de verde */
    --lightess-primary-color: #eafaf1;
    /* Variação ainda mais clara de verde para suavidade */
    --less-primary-color: #2ecc71;
    /* Variação intermediária de verde */
    --secondary-color: #ECC608;
    --third-color: #F96248;
    --lightess-third-color: rgb(255, 195, 173);
    --light-third-color: #f8efee;

    --fourth-color: #8b51ae;
    --text-blue: #007595;
    --primary-color-dark: #311144;
    --secondary-color-light: #9bc3df;
    --blue-gradient: #80E1FB;
    --contrast-color: #ffff7d;
    --grey-light: #ECECEC;
    --green: #03800d;
    --secondary-orange: #ffe1dc;
}

/* ======== Reset Básico e Estilos Globais ======== */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--lightess-primary-color);
    color: var(--text-color);
    padding: 1rem;
    overflow-x: hidden;
}

body.menu-aberto {
    overflow: hidden;
}

h2 {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
}

h3 {
    font-size: 1.2em;
    font-weight: 800;
}

h4 {
    font-size: 1em;
}

.bold {
    font-weight: 800;
}

/* ================== MOBILE ================== */

/* --- Bloco do Header (Mobile) --- */
.header-block {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(104, 65, 87, 0.4);
    /* Ajustado para combinar com --dark-primary-color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
    top: 1rem;
    z-index: 10;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mg-0 {
    margin: 0 -1em;
}

.column {
    flex-direction: column;
}

.logo img {
    width: 140px;
}

.desktop-nav {
    display: none;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger-btn.is-active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Estilos do menu lateral que abre */
.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
}

.mobile-menu.is-active {
    transform: translateX(0);
}

.mobile-menu .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-size: 1em;
    font-weight: 500;
}

.mobile-menu .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 80%;
}

.mobile-menu .nav-actions .btn {
    width: 100%;
    text-align: center;
}

/* --- Bloco Hero (Mobile) --- */
.hero-block {
    background-color: var(--primary-color);
    border-radius: 16px;
    padding: 4rem 1.5rem;
    box-shadow: 0 8px 32px rgba(104, 65, 87, 0.05);
    /* Ajustado para combinar com --dark-primary-color */
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    color: var(--white);
}

.hero-block h1 {
    font-size: 2em;
    font-weight: 800;
    line-height: 1.2;
}

.hero-block .subtitle {
    font-size: 1.35em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-block p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* --- Estilos de Botões --- */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login {
    color: #495057;
}

.btn-login:hover {
    background-color: #F8F9FA;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--black);
    font-size: 1.2em;
    font-weight: 700;
}

.green-gradient {
    background: linear-gradient(45deg, rgb(103, 255, 103), rgb(43, 210, 1));
    border-radius: 20px;
}

.btn-primary:hover {
    opacity: 0.85;
}

.hero-block .btn-primary {
    padding: 1rem 3rem;
}

/* ANTES E DEPOIS */
/* --- Card de Depoimento (Mobile-First) --- */
swiperhorizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 50%;
    width: fit-content;
}

/* --- Estilos da Seção do Carrossel de Fotos --- */
.photo-testimonial-section {
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto;
}

.photo-testimonial-section h2 {
    max-width: 85%;
}

.photo-swiper {
    width: 100%;
    padding: 2rem 0 4rem 0;
    overflow: visible;
}

.photo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(0.8);
    opacity: 0.7;
}

.photo-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.photo-swiper .slide-content {
    width: 450px;
}

.photo-swiper .testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(104, 65, 87, 0.15);
    /* Ajustado para combinar com --dark-primary-color */
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    display: block;
}

.photo-swiper .images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.photo-swiper .image-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.photo-swiper .testimonial-content {
    padding: 1.5em;
    text-align: left;
}

.photo-swiper .testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.photo-swiper .testimonial-text::before {
    content: '“';
    position: absolute;
    left: -10px;
    top: -40px;
    font-size: 5em;
    color: var(--primary-color);
    opacity: 0.3;
}

.photo-swiper .testimonial-author {
    font-size: 1em;
    font-weight: 700;
    color: var(--dark-primary-color);
    margin-top: 1rem;
    text-align: right;
}

.photo-pagination {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.image-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.8em;
    font-weight: 500;
    border-radius: 6px;
}

/* --- Estilos da Seção do Carrossel de Texto --- */
.text-testimonial-section {
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.text-testimonial-section h2 {
    color: var(--third-color);
}

.text-swiper {
    width: 100%;
    padding: 2rem 0 4rem 0;
    overflow: visible;
}

.text-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: scale(0.8);
    opacity: 0.7;
}

.text-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.text-swiper .slide-content {
    width: 450px;
}

.text-swiper .text-testimonial-card {
    background-color: var(--light-third-color);
    border: 1px solid var(--secondary-orange);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.text-swiper .text-testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 10em;
    font-weight: 900;
    color: var(--third-color);
    opacity: 0.13;
    z-index: 0;
    line-height: 1;
}

.text-swiper .text-testimonial-quote {
    font-size: 1em;
    line-height: 1.7;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
    text-align: right;
}

.text-swiper .text-testimonial-author {
    font-size: 1em;
    font-weight: 700;
    color: var(--third-color);
    margin-top: 1.5rem;
    text-align: right;
    position: relative;
    z-index: 1;
}

.text-pagination {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

/* --- Estilos compartilhados pelos 'dots' --- */
.photo-testimonial-section .custom-bullet {
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-testimonial-section .custom-bullet {
    background-color: var(--third-color);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-bullet.is-large {
    width: 14px;
    height: 14px;
    opacity: 1;
}

.custom-bullet.is-medium {
    width: 10px;
    height: 10px;
    opacity: 0.6;
}

.custom-bullet.is-small {
    width: 6px;
    height: 6px;
    opacity: 0.3;
}

.orange-primary-color {
    padding: 100px 30px;
    gap: 24px;
    background: radial-gradient(83.79% 100% at 50% 100%, rgba(252, 78, 18, 0.25) 0%, rgba(255, 96, 41, 0) 100%), radial-gradient(104.97% 125.28% at 52.05% 114.19%, #FF7A4C 0%, rgba(255, 167, 137, 0) 100%), var(--primary-color);
}

.text-section {
    padding: 0 0 4rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.text-section p {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    max-width: 90%;
}

.text-section .btn {
    padding: 1rem 1rem;
    font-size: 1.1em;
    background-color: var(--primary-color);
    color: var(--white);
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

/* --- PRODUCTS SECTION --- */

.pricing-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

#ord-1 {
    order: 1;
}

#ord-2 {
    order: 2;
}

#ord-3 {
    order: 3;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 670px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.pricing-card.recommended {
    border: 3px solid var(--less-primary-color);
    position: relative;
}

.card-header {
    width: 100%;
    padding: 15px 0;
    border-radius: 8px 8px 0 0;
    color: #333;
    font-size: 24px;
    font-weight: 900;
}

.card-header.standard {
    background: linear-gradient(to bottom, #a4a4a4, #ffffff);
}

.card-header.recommended-header {
    background: linear-gradient(to bottom, var(--light-primary-color), #ffffff);
    font-size: 22px;
}

.card-header.good-value {
    background: linear-gradient(to bottom, #a4a4a4, #ffffff);
}

.bottles-info {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
}

.product-image {
    margin: 20px 0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
}

.price-per-bottle {
    font-size: 52px;
    font-weight: 900;
    color: #333;
}

.price-per-bottle span {
    font-size: 16px;
    font-weight: 400;
    vertical-align: middle;
}

.save-info {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 5px;
}

.guarantee-info {
    font-size: 14px;
    color: #555;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    width: 100%;
    margin-top: 20px;
}

.recommended .guarantee-info {
    margin-top: 0;
}

.products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.products h2 {
    padding: 1rem;
    font-size: 1.5rem;
    border-bottom: none;
}

.products-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card.recommended {
    border: 3px solid var(--less-primary-color);
    box-shadow: 0 8px 16px rgba(104, 65, 87, 0.1);
    /* Ajustado para combinar com --dark-primary-color */
    position: relative;
    z-index: 1;
    color: var(--black);
}

.pricing-card.recommended:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.order-button {
    background: linear-gradient(45deg, rgb(192, 254, 192), rgb(43, 210, 1));
    border: 1px solid green;
    border-radius: 50px;
    color: var(--black);
    padding: .5rem 0;
    font-size: 1.3em;
    font-weight: 900;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.order-button:hover {
    background: linear-gradient(45deg, rgb(43, 210, 1), rgb(192, 254, 192));
}

.button-subtitle {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.payment-icons {
    margin-top: 15px;
}

.payment-icons img {
    width: 120px;
}

.total-price {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.total-price span {
    text-decoration: line-through;
    color: #999;
}

.shipping-info {
    font-size: 14px;
    font-weight: 700;
    color: #28a745;
    margin-top: 5px;
}

.doctor-recommended {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 15px;
    color: #333;
    font-weight: 700;
}

.doctor-recommended .check-icon {
    width: 18px;
    height: 18px;
}

/* ----- GUARANTEE SECTION ----- */

.guarantee {
    background-color: var(--black);
    border-radius: 16px;
    margin: 7rem auto 2rem auto;
    padding: 0 1.4rem 4rem 1.4rem;
    box-shadow: 0 8px 32px rgba(104, 65, 87, 0.05);
    /* Ajustado para combinar com --dark-primary-color */
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    color: var(--white);
    margin-top: 4rem;
    gap: 2rem;
}

.guarantee img {
    margin-top: -4rem;
    width: 158px;
    height: 158px;
}

.guarantee h2 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.5em;
}

/* ----- DECISION SECTION ----- */
.decision-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    border-radius: 16px;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.accordion-item {
    border-radius: 30px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    padding: 1.5rem;
    width: 100%;
}

.accordion-item.two {
    background: #f5f4f4;
    border: 3px solid var(--lightess-third-color);
}

.accordion-item.one {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-item.one .accordion-header {
    color: var(--white);
}

.accordion-icon {
    font-size: 2em;
    font-weight: 500;
    transition: transform 0.4s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.accordion-content .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0px;
    gap: .5rem;
}

.accordion-content .list:last-child {
    margin-bottom: 0;
}

.accordion-content p.bold {
    font-weight: 700;
}

.accordion-item.two .accordion-content p.bold {
    color: var(--text-color);
}

.accordion-content ul {
    padding: 0;
    margin: 0 1.5em;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.accordion-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.accordion-item.two .accordion-content li {
    color: var(--text-color);
}

.accordion-item.two li::before {
    color: var(--secondary-color);
}

.accordion-item.one li::before {
    color: #f5f5f5;
}

.accordion-content .list.result {
    background: var(--less-primary-color);
    border: 2px solid var(--lightess-third-color);
    border-radius: 30px;
    padding: 1rem;
    height: fit-content;
    color: var(--white);
}

/* ----- LONG-LASTING RESULTS SECTION -----*/
.lasting-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    padding: 1rem;
}

.lasting-section p {
    font-size: 1.1em;
    max-width: 800px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

.motives {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.motives .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* ----- FAQ SECTION ----- */

.faq-section {
    background-color: var(--black);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    box-shadow: 0 8px 32px rgba(104, 65, 87, 0.05);
    /* Ajustado para combinar com --dark-primary-color */
    max-width: 1000px;
    margin: 2rem auto 4rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.faq-section h2 {
    font-size: 2.5em;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion .accordion-item {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
    color: var(--white);
    background: var(--grey);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}

.faq-accordion .accordion-item.active {
    border-color: var(--light-primary-color);
    box-shadow: 0 4px 12px rgba(235, 196, 218, 0.1);
    /* Ajustado para combinar com --light-primary-color */
}

.faq-accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    user-select: none;
}

.faq-accordion .accordion-header h4 {
    margin: 0;
    font-size: 1em;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: left;
}

.faq-accordion .accordion-item.active .accordion-header h4 {
    color: var(--light-primary-color);
    font-weight: 700;
    border-bottom: 1px solid var(--light-primary-color);
    padding-bottom: 10px;
}

.faq-accordion .accordion-icon {
    color: var(--white);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 3em;
}

.faq-accordion .accordion-content p {
    text-align: left;
    line-height: 1.7;
    padding-top: 10px;
}

/* ----- FOOTER ----- */
footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    margin: -2rem;
    gap: .5rem;
}

footer img {
    width: 180px;
    order: 2;
}

footer p {
    font-size: 1em;
    order: 1;
    color: var(--white);
}

/* --- POP-UP ROLETA --- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
    width: 100%;
}

.popup-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 450px;
    animation: scaleUp 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
}

.popup-content h2 {
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.wheel-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 1rem auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1);
    background: conic-gradient(var(--light-primary-color) 0deg 60deg, var(--primary-color) 60deg 120deg, var(--dark-primary-color) 120deg 180deg, var(--light-primary-color) 180deg 240deg, var(--primary-color) 240deg 300deg, var(--dark-primary-color) 300deg 360deg);
}

.pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--black);
    z-index: 20;
}

.prizes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
}

.prizes li {
    font-size: 0.58rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    text-align: right;
    transform-origin: 0 50%;
    transform: rotate(var(--rotation)) translateX(20px);
    color: var(--white);
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

#spinButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff, #ddd);
    border: 6px solid #fff;
    z-index: 10;
    cursor: pointer;
}

.result {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    height: 30px;
}

.claim-button {
    background-color: var(--white);
    color: var(--black);
    padding: .5rem;
    border-radius: 8px;
    border: 1px solid var(--black);
    font-size: .8rem;
    margin-top: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.claim-button-recommended {
    background-color: var(--lightess-primary-color);
    color: var(--black);
    padding: .5rem;
    border-radius: 8px;
    border: 1px solid var(--less-primary-color);
    font-size: .8rem;
    margin-top: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.claim-button:hover,
.claim-button-recommended:hover {
    transform: scale(1.1);
}

.prizes-2.hidden {
    display: none;
}

.prizes-2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: .8rem;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

#timer-component {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    background-color: var(--lightess-primary-color);
    color: var(--dark-primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.time-label {
    color: var(--grey);
    font-size: 0.9rem;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Efeito de "flash" quando o tempo está acabando */
.timer-container.ending .time-value {
    animation: flash 1s infinite;
}

@keyframes flash {

    0%,
    100% {
        background-color: var(--primary-color);
    }

    50% {
        background-color: var(--dark-primary-color);
    }
}

@media (max-width: 480px) {
    .time-value {
        font-size: 2.5rem;
        min-width: 60px;
        padding: 10px;
    }

    .timer-container {
        padding: 20px;
    }
}

/* ============================================================ */
/* --- ESTILOS PARA TELAS MAIORES (DESKTOP) --- */
/* ============================================================ */

@media (min-width: 550px) {
    .claim-button-recommended {
        padding: .5rem;
        font-size: 1.1rem;
    }

    .claim-button {
        padding: .5rem;
        font-size: 1.1rem;
    }

    .hero-block {
        height: 75vh;
    }

    .hero-block h1 {
        font-size: 3em;
    }

    .hero-block .subtitle {
        font-size: 2em;
    }

    .hero-block p {
        font-size: 1.5em;
        max-width: 750px;
    }

    h2 {
        font-size: 1.8em;
        max-width: 80%;
    }

    h3 {
        font-size: 1.5em;
    }

    h4 {
        font-size: 1.2em;
    }

    .text-section p {
        font-size: 1em;
    }

    .text-section .btn {
        width: 80%;
    }

    .products h2 {
        margin: 2rem;
        padding: .5rem 2.5rem;
        border-bottom: 2px solid var(--primary-color);
    }

    .products-header h2 {
        font-size: 2em;
        margin-bottom: 0.5em;
        border-bottom: 2px solid var(--primary-color);
    }

    #ord-1 {
        order: 1;
    }

    #ord-2 {
        order: 2;
    }

    #ord-3 {
        order: 3;
    }

    .guarantee {
        margin-top: 8rem;
    }

    .guarantee img {
        margin-top: -6rem;
        width: 200px;
        height: 200px;
    }

    .guarantee p {
        font-size: 1.2em;
        max-width: 800px;
    }

    .guarantee h2 {
        font-size: 2.5em;
        max-width: 600px;
    }

    .lasting-section p {
        font-size: 1.5em;
    }

    .motives .btn-primary {
        font-size: 1.5em;
    }

    .lasting-section .btn-primary {
        padding: 1rem 4rem;
    }

    .faq-section h2 {
        font-size: 2em;
    }

    .faq-accordion .accordion-header h4 {
        font-size: 1.3em;
    }

    .faq-accordion {
        gap: 2rem;
    }

    .faq-accordion p {
        font-size: 1em;
    }

    .faq-accordion .accordion-item {
        padding: 1rem;
    }

    .faq-section {
        padding: 2rem;
        margin: 1rem auto 4rem auto;
    }

    footer {
        flex-direction: row;
    }

    footer img {
        width: 140px;
        order: 0;
    }

    footer p {
        order: 0;
        width: 200px;
        text-align: center;
    }
}

@media (min-width: 950px) {
    body {
        padding: 2rem;
    }

    .hamburger-btn,
    .mobile-menu {
        display: none;
    }

    .header-block {
        gap: 20px;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        width: 100%;
    }

    .header-block {
        padding: 1rem 1.5rem;
        top: 1.5em;
    }

    .logo img {
        width: 140px;
    }

    #logo-mobile {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        list-style: none;
        align-items: center;
        justify-content: center;
        gap: 5rem;
        width: 100%;
    }

    .nav-links .dropdown-arrow {
        display: inline-block;
        margin-left: 4px;
        transform: translateY(2px);
        opacity: 0.6;
    }

    .nav-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-block {
        padding: 6rem 2rem;
    }

    .hero-block h1 {
        font-size: 3em;
    }

    .hero-block .subtitle {
        font-size: 2em;
    }

    .hero-block p,
    .text-section p {
        font-size: 1.5em;
        max-width: 750px;
    }

    .text-section p {
        max-width: 750px;
    }

    .text-section .btn {
        font-size: 1.5em;
        padding: 1rem 4rem;
        min-width: 750px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
    }

    .hero-block .btn-primary {
        padding: 1rem 4rem;
        font-size: 1em;
    }

    .mg-0 {
        margin: 0 -2em;
    }

    .swiper-slide {
        opacity: 1;
    }

    h2 {
        font-size: 2.5em;
        max-width: 800px;
    }

    h3 {
        font-size: 1.5em;
    }

    h4 {
        font-size: 1.3em;
    }

    .accordion-item li {
        font-size: 1.1em;
    }
}