@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');

:root {
    --white: #ffffff;
    --black: #1D1D1D;
    --text-color: #6E6E6E;
    --grey: #A8A8A8;

    --primary-color: #E73C7E;        /* Rosa vibrante */
    --dark-primary-color: #C1275B;   /* Rosa escuro profundo */
    --light-primary-color: #F8A1C4;  /* Rosa claro */
    --lightess-primary-color: #FDE7F1;/* Fundo suave rosado */
    --secondary-color: #FF6B6B;      /* Vermelho coral moderno */
    --less-primary-color: #FF9BB3;   /* Rosa pálido */
    --third-color: #9C1B45;          /* Bordô sofisticado */
    --lightess-third-color: #F9DDE7; /* Rosa bem claro neutro */
    --light-third-color: #FFF5F8;    /* Quase branco rosado */

    --fourth-color: #E84A5F;         /* Vermelho rosado médio */
    --text-blue: #5C6B73;            /* Cinza-azulado neutro (bom p/ textos) */
    --primary-color-dark: #7A1234;   /* Vinho profundo */
    --secondary-color-light: #FFE0E8;/* Rosa muito claro */
    --blue-gradient: #FFD1DA;        /* Gradiente rosado pastel */
    --contrast-color: #FFB6C1;       /* Rosa suave */
    --grey-light: #ECECEC;
    --green: #7D8C78;                /* Verde musgo discreto (detalhes naturais) */
    --secondary-orange: #FF9E80;     /* Laranja suave de contraste */
}

/* ======== 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(156, 27, 69, 0.5);
    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: 80px;
}

.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; /* Menos padding vertical para mobile */
    box-shadow: 0 8px 32px rgba(163, 10, 180, 0.05);
    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; /* Título menor para mobile */
    font-weight: 800;
    line-height: 1.2;
}

.hero-block .subtitle{
    font-size: 1.35em; /* Título menor para mobile */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-block p {
    font-size: 1em; /* Parágrafo menor para mobile */
    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(163, 10, 180, 0.15);
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.1; /* Proporção da imagem */
    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%), #D600B1;
}

.text-section {
    padding: 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: 150px;
    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: #d9534f;
    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;

    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(0, 255, 30, 0.1);
    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);
}

.card-header {
width: 100%;
padding: 15px 0;
border-radius: 8px 8px 0 0;
color: var(--black);
font-size: 24px;
font-weight: 900;
}

.bottles-info {
font-size: 18px;
font-weight: 700;
margin-top: 15px;
}

.product-image {
margin: 20px 0;
height: 150px;
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;
}

.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 SETION ----- */

.guarantee {
    background-color: var(--black);
    border-radius: 16px;
    margin: 7rem auto 2rem auto;
    padding: 0 1.4rem 4rem 1.4rem; /* Menos padding vertical para mobile */
    box-shadow: 0 8px 32px rgba(163, 10, 180, 0.05);
    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 SETION ----- */
.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: 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; /* Menos padding vertical para mobile */
    box-shadow: 0 8px 32px rgba(163, 10, 180, 0.05);
    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); /* Cor da borda quando ativo */
    box-shadow: 0 4px 12px rgba(0, 150, 250, 0.1);
}

.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); /* Cor do título quando ativo */
    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); /* Animação suave do ícone */
    font-size: 3em;
}

.faq-accordion .accordion-content p {
    text-align: left;
    line-height: 1.7;
    padding-top: 10px;
}

/* ----- LABEL ----- */
.label{
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    img{
        width: -webkit-fill-available;
    }
}

/* ----- 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: 0 -2rem -2rem -2rem;
    gap: .5rem;
} 

footer a {
    font-size: 1em;
    order: 1;
    color: var(--white);
    text-decoration: none;
}

footer a:hover{
    opacity: 0.7;
}

footer .logo-info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.logo-info img{
    max-width: 200px;
    width: 100%;
}

.logo-info p {
    font-size: 1em;
    color: var(--white);
    text-align: left;
}

@media (max-width: 500px) {
    footer{
        gap: 1.5rem;
    }

    footer .logo-info{
        align-items: center;
        gap: 1.5rem;
    }

    .logo-info img{
        order: 2;
    }

    .logo-info p {
        order: 1;
    }
}


/* --- 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.75em; position: absolute; top: 50%; left: 50%; transform-origin: 0 0; transform: rotate(var(--rotation)) translateX(50px); color: var(--white); font-weight: 700; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); }
        #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-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; /* Aumenta o título no desktop */
    }

    .hero-block .subtitle{
        font-size: 2em;
    }

    .hero-block p {
        font-size: 1.5em; /* Aumenta o parágrafo no desktop */
        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: 100px;
        order: 0;
    }

    footer p {
        order: 0;
        width: 200px;
        text-align: center;
    }
}


@media (min-width: 950px) {

    body {
        padding: 2rem; /* Retorna o padding maior para desktop */
    }

    /* Esconde os elementos mobile no desktop */
    .hamburger-btn,
    .mobile-menu {
        display: none;
    }

    .header-block {
        gap: 20px;
    }
    
    /* Mostra a navegação de desktop */
    .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: 80px; /* Tamanho original do logo */
    }

    #logo-mobile{
        display: none;
    }

    .nav-links {
        display: flex; /* Garante que os links fiquem em linha */
        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; /* Garante que os botões fiquem em linha */
        align-items: center;
        gap: 1.5rem;
    }

    /* Ajusta o Hero para desktop */
    .hero-block {
        padding: 6rem 2rem;
    }

    .hero-block h1 {
        font-size: 3em; /* Aumenta o título no desktop */
    }

    .hero-block .subtitle{
        font-size: 2em;
    }

    .hero-block p, .text-section p {
        font-size: 1.5em; /* Aumenta o parágrafo no desktop */
        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 { /* Afeta ambos os carrosséis no mobile */
        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;
    }
}