/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f5ee;
    color: #174f46;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(208, 228, 211, 0.55),
            transparent 34%
        ),
        #f8f5ee;

    padding: 70px 6%;
}

.hero-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 50px;
}


/* =========================
   CONTEÚDO ESQUERDO
========================= */

.hero-content {
    width: 100%;
    max-width: 590px;
}

.hero-tag {
    display: inline-block;

    padding: 10px 18px;
    margin-bottom: 25px;

    background: #e6eee8;
    border-radius: 999px;

    color: #075a49;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================
   TÍTULO
========================= */

.hero h1 {
    color: #075a49;

    font-size: clamp(48px, 4.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -2.5px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #e96749;
}


/* =========================
   SUBTÍTULO
========================= */

.hero h2 {
    max-width: 570px;

    color: #315f58;

    font-size: clamp(24px, 2vw, 31px);
    line-height: 1.2;

    margin-bottom: 27px;
}


/* =========================
   DESCRIÇÃO
========================= */

.hero-description {
    max-width: 570px;

    color: #46625d;

    font-size: 17px;
    line-height: 1.7;

    margin-bottom: 16px;
}

.hero-description strong {
    color: #075a49;
}

.hero-family {
    color: #075a49;

    font-size: 17px;
    font-weight: 800;

    margin-bottom: 28px;
}


/* =========================
   BOTÃO
========================= */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 345px;
    min-height: 58px;

    padding: 18px 28px;

    background: #e96749;
    color: #ffffff;

    border-radius: 10px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;

    box-shadow: 0 10px 25px rgba(233, 103, 73, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.cta-button::after {
    content: "→";
    font-size: 25px;
    margin-left: 18px;
}

.cta-button:hover {
    background: #dc5d40;

    transform: translateY(-2px);

    box-shadow: 0 14px 30px rgba(233, 103, 73, 0.28);
}


/* =========================
   PREÇO
========================= */

.hero-price {
    margin-top: 12px;

    color: #687b76;

    font-size: 14px;
}

.hero-price strong {
    color: #075a49;
}


/* =========================
   ÁREA DO MOCKUP
========================= */

.hero-visual {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-wrapper {
    position: relative;

    width: 100%;
    max-width: 790px;
}


/* =========================
   IMAGEM ÚNICA
========================= */

.hero-mockup {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    image-rendering: auto;

    filter: drop-shadow(
        0 22px 25px rgba(24, 54, 47, 0.12)
    );
}


/* =========================
   TEXTO "PAINEL DIGITAL"
========================= */

.mockup-label {
    position: absolute;

    top: 8%;
    right: 5%;

    color: #075a49;

    font-size: 21px;
    line-height: 1.15;

    font-weight: 700;
    font-style: italic;

    transform: rotate(-4deg);

    text-align: left;
}

.mockup-label span {
    display: inline-block;

    font-size: 30px;

    margin-right: 4px;
}


/* =========================
   SEÇÃO 2 - CHEGADA
========================= */

.arrival-section {
    position: relative;
    overflow: hidden;

    padding: 100px 6% 110px;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(233, 103, 73, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(208, 228, 211, 0.55),
            transparent 30%
        ),
        #eef4ef;
}

.arrival-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================
   CABEÇALHO DA SEÇÃO 2
========================= */

.arrival-heading {
    max-width: 800px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-tag {
    display: inline-block;

    margin-bottom: 20px;
    padding: 9px 17px;

    background: #ffffff;
    border-radius: 999px;

    color: #075a49;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;

    box-shadow: 0 6px 18px rgba(24, 54, 47, 0.06);
}

.arrival-heading h2 {
    color: #075a49;

    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;

    margin-bottom: 24px;
}

.arrival-heading h2 span {
    display: block;

    color: #e96749;
}

.arrival-heading > p {
    max-width: 690px;
    margin: 0 auto;

    color: #526c66;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================
   CARDS DA SEÇÃO 2
========================= */

.arrival-questions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 55px;
}

.arrival-card {
    min-height: 235px;

    padding: 30px 25px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(7, 90, 73, 0.08);
    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(24, 54, 47, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.arrival-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 38px rgba(24, 54, 47, 0.11);
}

.arrival-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    background: #edf4ef;

    border-radius: 14px;

    font-size: 25px;
}

.arrival-card h3 {
    margin-bottom: 12px;

    color: #075a49;

    font-size: 20px;
    line-height: 1.2;
}

.arrival-card p {
    color: #5b706b;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================
   FECHAMENTO DA SEÇÃO 2
========================= */

.arrival-solution {
    max-width: 900px;

    margin: 0 auto;
    padding: 38px 50px;

    background: #075a49;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 18px 40px rgba(7, 90, 73, 0.16);
}

.arrival-solution p {
    margin-bottom: 10px;

    color: #dbeae2;

    font-size: 16px;
    line-height: 1.5;
}

.arrival-solution p strong {
    color: #ffffff;
}

.arrival-solution h3 {
    max-width: 720px;
    margin: 0 auto;

    color: #ffffff;

    font-size: clamp(23px, 2.2vw, 30px);
    line-height: 1.3;
}


/* =========================================================
   SEÇÃO 3 - GUIA + PAINEL
========================================================= */

.included-section {
    position: relative;
    overflow: hidden;

    padding: 105px 6% 110px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(208, 228, 211, 0.45),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 80%,
            rgba(233, 103, 73, 0.06),
            transparent 24%
        ),
        #f8f5ee;
}

.included-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================
   CABEÇALHO DA SEÇÃO 3
========================= */

.included-heading {
    max-width: 850px;
    margin: 0 auto 55px;

    text-align: center;
}

.included-heading h2 {
    color: #075a49;

    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;

    margin-bottom: 24px;
}

.included-heading h2 span {
    display: block;

    color: #e96749;
}

.included-heading > p {
    max-width: 730px;
    margin: 0 auto;

    color: #526c66;

    font-size: 18px;
    line-height: 1.7;
}

.included-heading strong {
    color: #075a49;
}


/* =========================
   GUIA + PAINEL
========================= */

.included-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    max-width: 1040px;

    margin: 0 auto 30px;
}

.included-content-simple {
    align-items: stretch;
}

.included-feature {
    position: relative;

    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: flex-start;

    gap: 20px;

    min-height: 190px;

    padding: 32px;

    background: #ffffff;

    border: 1px solid rgba(7, 90, 73, 0.08);
    border-radius: 18px;

    box-shadow: 0 12px 32px rgba(24, 54, 47, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.included-feature:hover {
    transform: translateY(-4px);

    box-shadow: 0 17px 36px rgba(24, 54, 47, 0.10);
}

.included-feature-panel {
    background: #075a49;
    border-color: #075a49;

    box-shadow: 0 15px 34px rgba(7, 90, 73, 0.14);
}

.included-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #edf4ef;
    color: #075a49;

    font-size: 15px;
    font-weight: 800;
}

.included-feature-panel .included-number {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.included-label {
    display: inline-block;

    margin-bottom: 7px;

    color: #e96749;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.included-feature-panel .included-label {
    color: #dbeae2;
}

.included-feature h3 {
    margin-bottom: 9px;

    color: #075a49;

    font-size: 24px;
    line-height: 1.2;
}

.included-feature p {
    color: #5b706b;

    font-size: 15px;
    line-height: 1.65;
}

.included-feature-panel h3 {
    color: #ffffff;
}

.included-feature-panel p {
    color: #dbeae2;
}


/* =========================
   FECHAMENTO DA SEÇÃO 3
========================= */

.included-closing {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    max-width: 760px;

    margin: 10px auto 0;
    padding: 22px 30px;

    text-align: center;
}

.included-closing > span {
    font-size: 25px;
}

.included-closing p {
    color: #526c66;

    font-size: 18px;
    line-height: 1.5;
}

.included-closing strong {
    color: #075a49;
}


/* =========================================================
   SEÇÃO 4 - NA PRÁTICA
========================================================= */

.product-use {
    position: relative;
    overflow: hidden;

    padding: 105px 6% 115px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(208, 228, 211, 0.55),
            transparent 26%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(233, 103, 73, 0.07),
            transparent 25%
        ),
        #eef4ef;
}

.product-use-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================
   CABEÇALHO - NA PRÁTICA
========================= */

.product-use-header {
    max-width: 850px;

    margin: 0 auto 70px;

    text-align: center;
}

.product-use-header h2 {
    margin-bottom: 24px;

    color: #075a49;

    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.product-use-header h2 span {
    display: block;

    color: #e96749;
}

.product-use-header > p {
    max-width: 720px;

    margin: 0 auto;

    color: #526c66;

    font-size: 18px;
    line-height: 1.7;
}

.product-use-header strong {
    color: #075a49;
}


/* =========================
   BLOCOS DE USO
========================= */

.use-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 65px;

    margin-bottom: 42px;
    padding: 40px;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(7, 90, 73, 0.08);
    border-radius: 24px;

    box-shadow:
        0 16px 42px rgba(24, 54, 47, 0.07);
}

.use-block-reverse {
    grid-template-columns: 1.15fr 0.85fr;
}

.use-block-reverse .use-content {
    order: 2;
}

.use-block-reverse .use-visual {
    order: 1;
}


/* =========================
   TEXTO DOS BLOCOS
========================= */

.use-content {
    display: grid;
    grid-template-columns: 58px 1fr;

    gap: 20px;

    align-items: flex-start;
}

.use-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: #075a49;

    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 18px rgba(7, 90, 73, 0.16);
}

.use-label {
    display: inline-block;

    margin-bottom: 9px;

    color: #e96749;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.9px;
}

.use-content h3 {
    margin-bottom: 13px;

    color: #075a49;

    font-size: clamp(25px, 2.2vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.use-content p {
    max-width: 440px;

    color: #5b706b;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   ESPAÇOS PARA OS PRINTS
========================= */

.use-visual {
    position: relative;

    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px dashed rgba(7, 90, 73, 0.18);
    border-radius: 20px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(208, 228, 211, 0.72),
            transparent 60%
        ),
        #f7faf7;
}

.use-visual::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(233, 103, 73, 0.05);
}

.use-visual > span {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(7, 90, 73, 0.08);
    border-radius: 999px;

    color: #6b817b;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(24, 54, 47, 0.06);
}


/* =========================
   PRINT REAL - MEUS 30 DIAS
========================= */

.use-visual-30-days {
    min-height: 0;

    background: #191919;

    border: 1px solid rgba(7, 90, 73, 0.10);
}

.use-visual-30-days::before {
    display: none;
}

.use-image {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

.use-visual-routine {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(244, 214, 205, 0.55),
            transparent 60%
        ),
        #fbf8f4;
}

.use-visual-organization {
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(204, 221, 235, 0.62),
            transparent 60%
        ),
        #f7fafb;
}


/* =========================
   NOTA FINAL - NA PRÁTICA
========================= */

.product-use-note {
    display: flex;
    align-items: center;

    gap: 18px;

    max-width: 900px;

    margin: 62px auto 0;
    padding: 27px 32px;

    background: #075a49;

    border-radius: 18px;

    box-shadow:
        0 16px 36px rgba(7, 90, 73, 0.15);
}

.product-use-note > span {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    font-size: 23px;
}

.product-use-note p {
    color: #dbeae2;

    font-size: 16px;
    line-height: 1.6;
}

.product-use-note strong {
    color: #ffffff;
}


/* =========================================================
   SEÇÃO 5 - OFERTA FINAL
========================================================= */

.offer-section {
    position: relative;
    overflow: hidden;

    padding: 105px 6% 115px;

    background:
        radial-gradient(
            circle at 86% 22%,
            rgba(208, 228, 211, 0.55),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(233, 103, 73, 0.07),
            transparent 25%
        ),
        #f8f5ee;
}

.offer-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================
   CABEÇALHO DA OFERTA
========================= */

.offer-header {
    max-width: 880px;

    margin: 0 auto 55px;

    text-align: center;
}

.offer-header h2 {
    margin-bottom: 24px;

    color: #075a49;

    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.offer-header h2 span {
    display: block;

    color: #e96749;
}

.offer-header > p {
    max-width: 740px;

    margin: 0 auto;

    color: #526c66;

    font-size: 18px;
    line-height: 1.7;
}

.offer-header strong {
    color: #075a49;
}


/* =========================
   CARD PRINCIPAL DA OFERTA
========================= */

.offer-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    max-width: 1040px;

    margin: 0 auto;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(7, 90, 73, 0.08);
    border-radius: 24px;

    box-shadow:
        0 22px 55px rgba(24, 54, 47, 0.10);
}


/* =========================
   CONTEÚDO DA OFERTA
========================= */

.offer-card-content {
    padding: 48px 50px;
}

.offer-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #e96749;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-card-content h3 {
    max-width: 480px;

    margin-bottom: 30px;

    color: #075a49;

    font-size: clamp(27px, 2.4vw, 35px);
    line-height: 1.15;
    letter-spacing: -0.7px;
}


/* =========================
   BENEFÍCIOS
========================= */

.offer-benefits {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.offer-benefits p {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: #526c66;

    font-size: 15px;
    line-height: 1.55;
}

.offer-benefits p span {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    margin-top: -1px;

    background: #eef4ef;

    border-radius: 50%;

    color: #075a49;

    font-size: 13px;
    font-weight: 900;
}


/* =========================
   ÁREA DE COMPRA
========================= */

.offer-purchase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 48px 42px;

    background: #075a49;

    text-align: center;
}

.offer-access {
    margin-bottom: 13px;

    color: #dbeae2;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================
   PREÇO FINAL
========================= */

.offer-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    margin-bottom: 25px;

    color: #ffffff;
}

.offer-currency {
    margin-top: 11px;
    margin-right: 7px;

    color: #dbeae2;

    font-size: 20px;
    font-weight: 700;
}

.offer-price strong {
    font-size: clamp(52px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -2.5px;
}


/* =========================
   BOTÃO FINAL
========================= */

.offer-button {
    width: 100%;
    min-width: 0;
    max-width: 330px;

    background: #e96749;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16);
}

.offer-button:hover {
    background: #dc5d40;

    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.20);
}

.offer-note {
    max-width: 310px;

    margin-top: 16px;

    color: #dbeae2;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   SEÇÃO 6 - DÚVIDAS FREQUENTES
========================================================= */

.faq-section {
    position: relative;
    overflow: hidden;

    padding: 100px 6% 105px;

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(208, 228, 211, 0.55),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(233, 103, 73, 0.06),
            transparent 24%
        ),
        #eef4ef;
}

.faq-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}


/* =========================
   CABEÇALHO DO FAQ
========================= */

.faq-header {
    max-width: 800px;

    margin: 0 auto 52px;

    text-align: center;
}

.faq-header h2 {
    margin-bottom: 22px;

    color: #075a49;

    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.faq-header h2 span {
    display: block;

    color: #e96749;
}

.faq-header > p {
    max-width: 650px;

    margin: 0 auto;

    color: #526c66;

    font-size: 17px;
    line-height: 1.7;
}

.faq-header strong {
    color: #075a49;
}


/* =========================
   LISTA DO FAQ
========================= */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 13px;

    max-width: 860px;

    margin: 0 auto;
}

.faq-item {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(7, 90, 73, 0.08);
    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(24, 54, 47, 0.05);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(7, 90, 73, 0.14);

    box-shadow:
        0 11px 28px rgba(24, 54, 47, 0.07);
}


/* =========================
   PERGUNTA
========================= */

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 23px 26px;

    color: #075a49;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;

    cursor: pointer;

    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-plus {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    background: #eef4ef;

    border-radius: 50%;

    color: #075a49;

    font-size: 23px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);

    background: #075a49;
    color: #ffffff;
}


/* =========================
   RESPOSTA
========================= */

.faq-answer {
    padding:
        0
        75px
        24px
        26px;
}

.faq-answer p {
    max-width: 700px;

    color: #5b706b;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
    padding: 48px 6% 42px;

    background: #064d3f;
}

.footer-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 15px;
}

.footer-paw {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background: rgba(255, 255, 255, 0.10);

    border-radius: 50%;

    font-size: 20px;
}

.footer-brand strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 16px;
    letter-spacing: 0.4px;
}

.footer-brand p {
    color: #cfe0d9;

    font-size: 13px;
    line-height: 1.5;
}

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 28px 0 23px;

    background: rgba(255, 255, 255, 0.12);
}

.footer-disclaimer {
    max-width: 780px;

    color: #a9c2b9;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   RESPONSIVO - NOTEBOOK
========================================================= */

@media (max-width: 1200px) {

    .hero {
        padding: 60px 5%;
    }

    .hero-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 30px;
    }

    .mockup-wrapper {
        max-width: 680px;
    }

    .mockup-label {
        font-size: 18px;
    }

    .arrival-section,
    .included-section,
    .product-use,
    .offer-section,
    .faq-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .arrival-questions {
        gap: 15px;
    }

    .arrival-card {
        padding: 27px 21px;
    }

    .use-block {
        gap: 40px;

        padding: 35px;
    }
}


/* =========================================================
   RESPONSIVO - TABLET
========================================================= */

@media (max-width: 950px) {

    .hero {
        padding: 55px 7%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content {
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-visual {
        width: 100%;
    }

    .mockup-wrapper {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(48px, 8vw, 68px);
    }


    /* SEÇÃO 2 */

    .arrival-section {
        padding: 80px 7% 90px;
    }

    .arrival-heading {
        margin-bottom: 45px;
    }

    .arrival-questions {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

    .arrival-card {
        min-height: 210px;
    }

    .arrival-solution {
        padding: 34px 38px;
    }


    /* SEÇÃO 3 */

    .included-section {
        padding: 85px 7% 90px;
    }

    .included-heading {
        margin-bottom: 48px;
    }

    .included-content {
        max-width: 760px;

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .included-feature {
        min-height: auto;
    }


    /* SEÇÃO 4 */

    .product-use {
        padding: 85px 7% 95px;
    }

    .product-use-header {
        margin-bottom: 50px;
    }

    .use-block,
    .use-block-reverse {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 32px;
    }

    .use-block-reverse .use-content,
    .use-block-reverse .use-visual {
        order: initial;
    }

    .use-content {
        max-width: 650px;
    }

    .use-content p {
        max-width: 600px;
    }

    .use-visual {
        min-height: 300px;
    }

    .use-visual-30-days {
        min-height: 0;
    }

    .product-use-note {
        margin-top: 48px;
    }


    /* SEÇÃO 5 */

    .offer-section {
        padding: 85px 7% 95px;
    }

    .offer-header {
        margin-bottom: 48px;
    }

    .offer-card {
        max-width: 760px;

        grid-template-columns: 1fr;
    }

    .offer-card-content {
        padding: 42px;
    }

    .offer-purchase {
        padding: 42px;
    }

    .offer-button {
        max-width: 390px;
    }


    /* SEÇÃO 6 */

    .faq-section {
        padding: 85px 7% 90px;
    }

    .faq-header {
        margin-bottom: 45px;
    }


    /* RODAPÉ */

    .site-footer {
        padding-left: 7%;
        padding-right: 7%;
    }
}


/* =========================================================
   RESPONSIVO - CELULAR
========================================================= */

@media (max-width: 600px) {

    .hero {
        min-height: auto;

        padding:
            38px
            22px
            50px;
    }

    .hero-container {
        gap: 38px;
    }

    .hero-tag {
        font-size: 12px;

        padding: 9px 13px;

        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 46px;
        line-height: 1;

        letter-spacing: -1.8px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-family {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        min-width: 0;

        padding: 17px 18px;

        font-size: 14px;
    }

    .hero-price {
        text-align: center;
    }

    .mockup-wrapper {
        width: 110%;

        margin-left: -5%;
    }

    .mockup-label {
        top: 4%;
        right: 2%;

        font-size: 14px;
    }

    .mockup-label span {
        font-size: 21px;
    }


    /* SEÇÃO 2 */

    .arrival-section {
        padding: 65px 22px 70px;
    }

    .arrival-heading {
        margin-bottom: 38px;
    }

    .section-tag {
        margin-bottom: 17px;

        padding: 8px 13px;

        font-size: 11px;
    }

    .arrival-heading h2 {
        font-size: 36px;
        line-height: 1.08;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }

    .arrival-heading > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .arrival-questions {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-bottom: 35px;
    }

    .arrival-card {
        min-height: auto;

        padding: 24px 22px;

        border-radius: 15px;
    }

    .arrival-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 17px;

        font-size: 22px;
    }

    .arrival-card h3 {
        font-size: 19px;
    }

    .arrival-card p {
        font-size: 15px;
    }

    .arrival-solution {
        padding: 30px 22px;

        border-radius: 16px;
    }

    .arrival-solution p {
        font-size: 14px;
    }

    .arrival-solution h3 {
        font-size: 23px;
    }


    /* SEÇÃO 3 */

    .included-section {
        padding: 65px 22px 70px;
    }

    .included-heading {
        margin-bottom: 38px;
    }

    .included-heading h2 {
        font-size: 36px;
        line-height: 1.08;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }

    .included-heading > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .included-content {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-bottom: 22px;
    }

    .included-feature {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        min-height: auto;

        padding: 23px 20px;

        border-radius: 15px;
    }

    .included-number {
        width: 43px;
        height: 43px;

        font-size: 13px;
    }

    .included-label {
        font-size: 10px;
    }

    .included-feature h3 {
        font-size: 20px;
    }

    .included-feature p {
        font-size: 14px;
        line-height: 1.6;
    }

    .included-closing {
        align-items: flex-start;

        padding: 18px 5px;
    }

    .included-closing > span {
        font-size: 21px;
    }

    .included-closing p {
        text-align: left;

        font-size: 16px;
    }


    /* SEÇÃO 4 */

    .product-use {
        padding: 65px 22px 75px;
    }

    .product-use-header {
        margin-bottom: 38px;
    }

    .product-use-header h2 {
        margin-bottom: 20px;

        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .product-use-header > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .use-block,
    .use-block-reverse {
        grid-template-columns: 1fr;

        gap: 24px;

        margin-bottom: 18px;
        padding: 23px 20px;

        border-radius: 17px;
    }

    .use-block-reverse .use-content,
    .use-block-reverse .use-visual {
        order: initial;
    }

    .use-content {
        grid-template-columns: 45px 1fr;

        gap: 15px;
    }

    .use-number {
        width: 43px;
        height: 43px;

        font-size: 12px;
    }

    .use-label {
        margin-bottom: 7px;

        font-size: 10px;
    }

    .use-content h3 {
        margin-bottom: 10px;

        font-size: 22px;
    }

    .use-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .use-visual {
        min-height: 220px;

        border-radius: 14px;
    }

    .use-visual-30-days {
        min-height: 0;
    }

    .use-visual > span {
        padding: 9px 13px;

        font-size: 11px;
    }

    .product-use-note {
        align-items: flex-start;

        gap: 13px;

        margin-top: 35px;
        padding: 23px 20px;

        border-radius: 16px;
    }

    .product-use-note > span {
        width: 40px;
        height: 40px;

        font-size: 19px;
    }

    .product-use-note p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* SEÇÃO 5 */

    .offer-section {
        padding: 65px 22px 75px;
    }

    .offer-header {
        margin-bottom: 38px;
    }

    .offer-header h2 {
        margin-bottom: 20px;

        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .offer-header > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .offer-card {
        grid-template-columns: 1fr;

        border-radius: 18px;
    }

    .offer-card-content {
        padding: 30px 23px;
    }

    .offer-label {
        margin-bottom: 14px;

        font-size: 10px;
    }

    .offer-card-content h3 {
        margin-bottom: 24px;

        font-size: 27px;
    }

    .offer-benefits {
        gap: 13px;
    }

    .offer-benefits p {
        gap: 10px;

        font-size: 14px;
    }

    .offer-benefits p span {
        width: 22px;
        height: 22px;

        font-size: 12px;
    }

    .offer-purchase {
        padding: 32px 23px 35px;
    }

    .offer-price {
        margin-bottom: 22px;
    }

    .offer-currency {
        margin-top: 8px;

        font-size: 17px;
    }

    .offer-price strong {
        font-size: 54px;
    }

    .offer-button {
        width: 100%;
        max-width: none;
    }

    .offer-note {
        font-size: 12px;
    }


    /* SEÇÃO 6 */

    .faq-section {
        padding: 65px 22px 70px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h2 {
        margin-bottom: 19px;

        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .faq-header > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-item summary {
        gap: 15px;

        padding: 19px 18px;

        font-size: 15px;
    }

    .faq-plus {
        width: 30px;
        height: 30px;

        font-size: 20px;
    }

    .faq-answer {
        padding:
            0
            55px
            20px
            18px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* RODAPÉ */

    .site-footer {
        padding: 38px 22px 34px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-paw {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .footer-brand strong {
        font-size: 15px;
    }

    .footer-brand p {
        font-size: 12px;
    }

    .footer-divider {
        margin: 24px 0 20px;
    }

    .footer-disclaimer {
        font-size: 11px;
        line-height: 1.6;
    }
}