:root {
    --primary-blue: #0d3b66;
    --light-blue: #e6faf1;
    --accent-pink: #ff2e7a;
    --white: #ffffff;
    --text-dark: #1e1e1e;
    --lightgrey: #f4f1ec;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--light-blue);
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    max-width: 100%;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 500;
}

p {
    font-weight: 400;
}

.cta-button {
    font-weight: 600;
}

/* =========================
   TOPBAR
========================= */

.topbar {
    background: var(--accent-pink);
    color: var(--white);
    text-align: center;
    padding: 18px 0;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 70vh;
    background: url("../IMGS/FOTOS ATRIZ/1b8a1354.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.75) 10%,
            rgba(255, 255, 255, 0.65) 20%,
            rgba(255, 255, 255, 0.3) 40%,
            rgba(255, 255, 255, 0) 60%);
}

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--accent-pink);
    font-family: 'Cooper Black', sans-serif;
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 50px;
    margin: 25px 0;
    color: #934040;
}

.cta-button {
    display: inline-block;
    background: var(--accent-pink);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* HERO IMAGE */
.hero-image img {
    width: 100%;
    max-width: 500px;
}

/* =========================
   FEATURES
========================= */

.features {
    position: relative;
    max-width: 900px;
    margin: -70px auto 0 auto;
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.feature-item {
    flex: 1;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.feature-divider {
    width: 1px;
    height: 30px;
    background: var(--accent-pink);
}

/* =========================
   SOBRE O PRODUTO
========================= */

.about-product {
    background: #f5f4ef;
    padding: 100px 8% 30px 8%;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #6b2d2d;
}

.about-text h2 span {
    color: var(--accent-pink);
}

.about-text p {
    font-size: 18px;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.about-image {
    margin-top: 50px;
    max-width: 900px;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================
   LETREIRO girando PROFISSIONAL
========================= */

.marquee {
    background: var(--accent-pink);
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeScroll 15s linear infinite;
}

.marquee-track {
    display: flex;
    gap: 400px;
    padding: 15px 0;
    white-space: nowrap;
}

.marquee-track span {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.5px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   BENEFÍCIOS
========================= */

.benefits {
    background: #fafaf2;
    padding: 80px 8%;
    padding-top: 40px;
}

.benefits h2 {
    font-size: 40px;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 60px;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h3 {
    color: var(--accent-pink);
    font-size: 20px;
    margin-bottom: 5px;
}

.benefits-text p {
    margin-bottom: 25px;
}

.benefits-image img {
    width: 100%;
    border-radius: 20px;
}

.benefits-button {
    text-align: center;
    margin-top: 50px;
}

/* =========================
   MODO DE USO
========================= */

.use-mode {
    max-width: 700px;
    margin: 80px auto 0 auto;
    padding: 0 20px;

    border: 1.5px solid #e5d3cc;
    border-radius: 24px;
    padding: 28px;
    background: #fff;
    box-shadow: 0px 0px 0px 1px red;
    border-radius: 30px;
}

.use-mode h2 {
    text-align: center;
    color: #6b2d2d;
    font-size: 24px;
    margin-bottom: 35px;
}

.use-mode ul {
    list-style: none;
    padding: 0;
}

.use-mode li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.6;
}

/* SVG */
.use-mode .icon {
    width: 22px;
    height: 22px;
    color: #ff2e7a;
    flex-shrink: 0;
    margin-top: 3px;
}

/* =========================
   DEPOIMENTOS LIMPO PROFISSIONAL
========================= */

.testimonials {
    padding: 60px 20px;
    background: var(--lightgrey);
    text-align: center;
}

.testimonials-title {
    font-size: 38px;
    font-weight: 500;
    color: #444;
    margin-bottom: 60px;
}

.testimonials-title span {
    color: var(--accent-pink);
    font-weight: 700;
}

/* =========================
   CARROSSEL PROFISSIONAL
========================= */
.carousel {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--lightgrey);
}

/* =========================
   BOLINHAS
========================= */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots button.active {
    background: #ff4d4d;
    transform: scale(1.3);
}

/* =========================
   OFERTAS
========================= */

.offers {
    background: linear-gradient(135deg, #ff2e7a, #ff6fa5);
    padding: 30px 8% 80px 8%;
}

.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.offers-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.offers-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.offer-card {
    background: var(--white);
    border-radius: 20px;
    width: 360px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: 0.3s;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.offer-card img {
    width: 180px;
    margin: 20px 0;
}

.offer-card h3 {
    font-size: 35px;
}

.price-label {
    font-size: 14px;
    margin-top: 10px;
}

.price {
    font-size: 40px;
    margin: 10px 0;
    color: var(--primary-blue);
}

.installments {
    font-size: 14px;
    margin-bottom: 20px;
}

.buy-btn {
    display: inline-block;
    background: var(--accent-pink);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #e0266c;
}

/* BADGE MELHOR OFERTA */

.best {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #b54874;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.footer h2 {
    margin-bottom: 20px;
    font-weight: bold;
}

.footer a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.footer hr {
    margin: 30px auto;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer p {
    font-size: 14px;
}

.footer i {
    margin-right: 8px;
    font-size: 18px;
    color: rgb(126, 255, 94);
}

.footer a:hover {
    color: rgb(126, 255, 94);
    transform: scale(1.15);
}


/* =========================
   RESPONSIVO MOBILE
========================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero {
        height: 90vh; 
        padding: 0 20px;
        display: flex;
        flex-direction: column; 
        justify-content: flex-start; 
        
        background: url("../IMGS/FOTOS ATRIZ/1b8a1354.jpg") no-repeat;
        background-position: top center; 
        
        background-size: 160%; 
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.75) 30%,
            rgba(255, 255, 255, 0.65) 40%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 70%);
    }

    .hero-content {
        padding: 10px 20px 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 46px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 25px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        display: block;
        border-radius: 0;
    }

    .features {
        margin-top: -40px;
        flex-direction: row;
        padding: 20px;
        border-radius: 20px;
    }

    .feature-item {
        font-size: 13px;
    }

    .feature-divider {
        height: 20px;
    }

    .about-product {
        padding: 30px 20px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-image {
        height: 250px;
    }

    .about-image img {
        border-radius: 16px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-image {
        order: 2;
    }

    .benefits-text {
        order: 1;
    }

    .testimonials {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-slider {
        justify-content: center;
    }

    .carousel-item {
        flex: 0 0 85%;
    }

    .carousel-item img {
        height: 450px;
    }
}