/* ============================================================
   Promociona! — Main Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   Web Fonts
---------------------------------------------------------- */
@font-face {
    font-family: 'Alkaline Test';
    src: url('../../fonts/alkaline-demi.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Manrope:wght@400;600&family=Pacifico&display=swap');

/* ----------------------------------------------------------
   Design Tokens
---------------------------------------------------------- */
:root {
    /* Colors */
    --terra: #9A2C00;
    --terracota: #CD4500;
    --laranja: #FF7A26;
    --salmon-100: #FFEFE7;
    --branco: #FFFFFF;
    --amarelo: #FFE5AE;
    --amarelo-100: rgb(255, 229, 174, 50%);
    --gradiente-1: radial-gradient(#9A2C00 0%, #FF7A26 49%, #9A2C00 100%);
    --gradiente-2: radial-gradient(#FF7A26 0%, #FFE5AE 49%, #FF7A26 100%);

    /* Typography — Families */
    --font-display: 'Alkaline Test', serif;
    --font-accent: 'Pacifico', cursive;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-ui: 'Manrope', sans-serif;

    /* Tamanhos Fonte */
    --font-16: 16px;
    --font-24: 24px;
    --font-40: 40px;
    --font-56: 56px;
    --font-20: 20px;

    /* Typography — Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Typography — Line Heights */
    --line-height-tight: 1.1;
    --line-height-heading: 1.2;
    --line-height-body: 1.5;

    /* Typography — Letter Spacing */
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 80px;
    --space-9: 120px;

    /* Border Radius */
    --radius-none: 0px;
    --radius-md: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-card: 0px 11px 21.2px -5px rgba(221, 221, 221, 0.8);

    /* Borders */
    --border-width: 2px;
    --border: var(--border-width) solid var(--color-border);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-default: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ----------------------------------------------------------
   Base Reset
---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-body);
    color: var(--color-text-primary);
    background: var(--color-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    overflow-x: hidden;
}

/* ----------------------------------------------------------
   Typography Scale
---------------------------------------------------------- */
p {
    margin-top: 0;
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-brand-dark);
}

strong,
b {
    font-weight: var(--font-weight-bold);
}

small {
    font-size: var(--font-size-xs);
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

.text-secondary {
    color: var(--color-text-secondary);
}

.text-tertiary {
    color: var(--color-text-tertiary);
}

.text-brand {
    color: var(--color-brand);
}

.text-on-brand {
    color: var(--color-text-on-brand);
}

/* ----------------------------------------------------------
   Utilities
---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------------------------------
   Typography Utilities
---------------------------------------------------------- */

/* Shape SVG atrás do texto — funciona em qualquer elemento com texto */
.shape-texto {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.shape-texto::after {
    content: "";
    position: absolute;
    inset: -0.7em;
    background: url(../../images/shape-text-banner.svg) no-repeat center / 100% 100%;
    z-index: -1;
}

/* Títulos display — Alkaline Test, 56px, weight 400 (ex: títulos principais de seção) */
.titulo-destaque {
    font-size: var(--font-56);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 48px;
}

/* Títulos de seção — Poppins, 40px, weight 400 (ex: subtítulos e h1 do hero) */
.titulo-secao {
    font-size: var(--font-40);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 48px;
}

/* ----------------------------------------------------------
   Buttons
---------------------------------------------------------- */

.btn-base {
    border-radius: 16px;
    padding: 24px;
    font-weight: 700;
    font-size: var(--font-16);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 18px var(--space-7);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Transição suave para todas as classes de botões */
.btn-base,
.btn-white,
.btn-transparent {
    transition: all 0.3s ease;
}

/* Animações elegantes de UX para todos os botões */
.btn:hover,
.btn-base:hover,
.btn-white:hover,
.btn-transparent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:active,
.btn-base:active,
.btn-white:active,
.btn-transparent:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    color: var(--terra) !important;
}

.btn--brand {
    background: var(--color-brand);
    color: var(--color-neutral-0);
    border-color: var(--color-brand);
}

.btn--brand:hover {
    background: var(--color-brand-dark);
    border-color: var(--color-brand-dark);
    color: var(--color-neutral-0);
}

.btn--white {
    background: var(--color-neutral-0);
    color: var(--color-brand-dark);
    border-color: var(--color-neutral-0);
}

.btn--white:hover {
    background: var(--color-secondary-200);
    border-color: var(--color-secondary-200);
    color: var(--color-brand-dark);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-neutral-0);
    border-color: var(--color-neutral-0);
}

.btn--outline-white:hover {
    background: var(--color-neutral-0);
    color: var(--color-brand-dark);
}

.btn--full {
    width: 100%;
}

/* Header */
.menu-header__nav--list {
    gap: clamp(20px, 2.5vw, 50px);
    font-weight: 400;
    font-size: clamp(13px, 1vw, 16px);
}

.menu-header__nav--list a {
    color: #fff;
    position: relative;
    transition: font-weight var(--transition-fast);
}

.menu-header__nav--list a.ativo {
    font-weight: 700;
}

.menu-header__nav--list a.ativo::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: url(../../images/shape-header.svg) no-repeat center / contain;
    z-index: -1;
}

/* Hamburger */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

#container-hero {
    position: relative;
    background: var(--terra);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 0 0 100px 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    #container-hero {
        padding: 0;
    }
}

#container-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: url(../../images/textura-bg-hero.svg) no-repeat;
    z-index: 0;
    background-size: cover;
}

.container-logo-header {
    background: url(../../images/forma-logo.svg);
    background-repeat: no-repeat;
    background-size: max(calc(30vw + 120px), calc(50vw - 240px)) 150px;
    background-position: 0 -18px;
    height: 140px;
    z-index: 9;
    position: relative;
	display: flex;
	justify-content: center;
}

.header {
    display: flex;
    gap: 50px;
    padding: 15px 5vw;
    max-width: 100%;
    justify-content: flex-end;
	width: 1300px;
}

.menu-header {
    margin-top: -3%;
}

.logo-header {
    position: absolute;
    top: 38%;
    left: 25vw;
    transform: translate(-50%, -55%);
    z-index: 1;
}

.logo-header img {
    width: clamp(190px, 14vw, 240px);
}

.btn-white {
    background-color: #fff;
    color: var(--terra);
}

.btn-transparent {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* FOOTER */

footer {
    background: url(../../images/bg-rodape01.svg) no-repeat;
    padding: 0 0 200px 0;
    background-position: bottom;
}

.footer--header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 0;
    background: rgba(255, 255, 255, 0.96);
}

.footer--logo p {
    margin-top: 5px;
    color: var(--terra);
    text-align: center;
}

.footer--logo p strong {
    color: var(--laranja);
    font-weight: 700;
}

.footer--infos {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    white-space: nowrap;
    margin-top: 24px;
    margin-bottom: 15px;
}

.footer--infos__single {
    display: flex;
    gap: 5px;
}

.footer--infos__single p {
    color: var(--terra);
    font-weight: 400;
}

.footer--certificacoes {
    background-color: #FFEFE766;
    padding: 45px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-certificacoes__content {
    max-width: 1200px;
    width: 95%;
    display: flex;
    gap: 24px;
}

.footer--certificacoes__titulo {
    /* width: 60%; */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-certificacoes__content>* {
    flex: 1;
}

.footer--certificacoes__titulo h3 {
    font-family: var(--font-display);
    font-size: var(--font-24);
    color: var(--laranja);
}

.footer--certificacoes__titulo p {
    font-size: 12px;
    color: var(--terra);
    font-weight: 400;
}

.footer--certificacoes__selos img {
    max-width: 65px;
    height: 65px;
}

.footer--certificacoes__selos {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.footer--copyright {
    width: 100%;
    background-color: var(--amarelo);
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 10px 0;
}

.footer--copyright p,
a {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--terra);
}


/* =============================================================
   RESPONSIVIDADE — Footer & Header (main.css)
   ============================================================= */

@media (max-width: 1024px) {
    .footer--infos {
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        gap: 20px;
    }

    .footer-certificacoes__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer--certificacoes__selos {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 1100px) {
    .container-logo-header {
        background: url(../../images/shape-header-mobile.png) no-repeat;
        background-position: left top;
        background-size: 200px auto;
        height: 90px !important;
        position: relative;
        z-index: 99;
    }

    .header {
        padding: 0 16px;
        gap: 12px;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
    }

    .logo-header {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        display: flex;
        align-items: center;
        z-index: 2;
    }

    .logo-header img {
        width: 150px;
        margin-left: 20px;
    }

    .menu-header {
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .menu-header {
        display: flex;
        align-items: center;
    }

    .menu-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--terra);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .menu-header__nav.is-open {
        max-height: 500px;
        padding: 24px 20px;
    }

    .menu-header__nav--list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .menu-header__nav--list li {
        width: 100%;
        text-align: center;
    }

    .menu-header__nav--list a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
}

@media (max-width: 1199px) {
    footer {
        padding: 0 0 100px 0;
    }

    .footer--logo,
    .footer--infos,
    .footer--certificacoes {
        padding: 30px;
    }

    .footer--logo {
        text-align: center;
    }

    .footer--logo img {
        margin: 0 auto;
    }

    .footer--logo p {
        font-size: 18px;
    }

    .footer--infos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 20px;
        white-space: normal;
    }

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

    .footer--infos__single img {
        margin-top: -10px;
    }

    .footer--infos__single p {
        font-size: 16px;
    }

    .footer--certificacoes {
        padding: 30px 20px;
    }

    .footer-certificacoes__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer--certificacoes__titulo {
        text-align: center;
    }

    .footer--certificacoes__titulo h3 {
        font-size: 18px;
    }

    .footer--certificacoes__titulo p {
        font-size: 11px;
    }

    .footer--certificacoes__selos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer--certificacoes__selos img {
        max-width: 50px;
        height: 50px;
    }

    .footer--copyright {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        text-align: center;
    }

    .footer--copyright p,
    .footer--copyright a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer--infos__single p {
        font-size: 16px;
    }

    .footer--certificacoes__selos img {
        max-width: 55px;
        height: 55px;
    }
}

/* Selo Header */
.header--selo {
    margin-left: auto;
    position: fixed;
    z-index: 10;
    right: 60px;
    top: 100px;
}

@media (max-width: 768px) {
    .selo-animado {
        width: 100px !important;
    }

    .header--selo {
        right: 10px;
    }
}

.selo-animado {
    width: 130px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.selo-animado:hover {
    transform: scale(1.05) rotate(-3deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}