/*
Theme Name: SLD_New_Theme
Theme URI:
Author: SLD
Description: Site oficial da SLD
Version: 1.0.0
*/


/* ============================================================
   Fonts
   ============================================================ */

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anybody';
    src: url('../fonts/Anybody-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anybody';
    src: url('../fonts/Anybody-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* ============================================================
   Variáveis globais
   ============================================================ */

:root {
    --sld-cream:      #fffaf4;
    --sld-dark:       #071108;
    --sld-orange:     #ED5C33;
    --sld-black:      #0a0a0a;
    --sld-white:      #ffffff;
    --sld-grey:       #cccccc;
    --sld-glow-red:   #d63200;
    --sld-glow-blu:   #0057a8;
    --sld-blue:       #1a8fe3;
    --max-width:      1200px;
    --padding-x:      15px;
}


/* ============================================================
   Reset & Base
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sld-main {
    flex: 1;
}


/* ============================================================
   Header
   ============================================================ */

.sld-header {
    background-color: var(--sld-cream);
}

.sld-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5px var(--padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sld-hamburger {
    display: none;
}

.sld-header__logo img {
    height: 75px;
    width: auto;
    display: block;
}

.sld-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.sld-nav__link {
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    color: var(--sld-dark);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.sld-nav__cta {
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    background-color: var(--sld-orange);
    color: var(--sld-cream);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 22px;
    transition: background-color 0.2s ease, transform 0.15s ease;
    display: inline-block;
}

/* ── Dropdown ── */
.sld-nav__item--dropdown {
    position: relative;
}

.sld-nav__dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.sld-nav__arrow {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    display: inline-block;
}

.sld-nav__item--dropdown:hover .sld-nav__arrow,
.sld-nav__dropdown-toggle[aria-expanded="true"] .sld-nav__arrow {
    transform: rotate(180deg);
}

.sld-nav__dropdown {
    list-style: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background-color: var(--sld-cream);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 300;
    border-top: 2px solid var(--sld-orange);
}

.sld-nav__item--dropdown:hover .sld-nav__dropdown,
.sld-nav__item--dropdown.is-open .sld-nav__dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.sld-nav__dropdown-link {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--sld-dark);
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.2s ease, background 0.2s ease;
}

.sld-nav__dropdown-link:hover {
    color: var(--sld-orange);
    background-color: rgba(237, 92, 51, 0.06);
}

@media (max-width: 768px) {

    .sld-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 200;
    }

    .sld-hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--sld-dark);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .sld-hamburger.is-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .sld-hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .sld-hamburger.is-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .sld-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--sld-cream);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .sld-header__nav.is-open {
        opacity: 1;
        pointer-events: all;
    }

    .sld-nav__list {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .sld-nav__link {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .sld-nav__cta {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 12px 32px;
    }

    .sld-nav__dropdown {
        position: static;
        opacity: 1;
        pointer-events: all;
        transform: none;
        border-top: none;
        border-left: 2px solid var(--sld-orange);
        padding: 8px 0 8px 16px;
        margin-top: 8px;
        display: none;
    }

    .sld-nav__item--dropdown.is-open .sld-nav__dropdown {
        display: block;
    }

    .sld-nav__dropdown-link {
        font-size: 1.4rem;
        padding: 6px 0;
    }

}


/* ============================================================
   Footer
   ============================================================ */

.sld-footer {
    background-color: var(--sld-cream);
    padding-top: 40px;
    padding-bottom: 40px;
}

.sld-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x) 10px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.sld-footer__col {
    flex: 1;
}

.sld-footer__brand img {
    height: 75px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.sld-footer__desc {
    font-family: 'Anybody', sans-serif;
    color: var(--sld-dark);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    max-width: 260px;
}

.sld-footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sld-footer__nav a {
    text-decoration: none;
    color: var(--sld-dark);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
}

.sld-footer__nav a:hover {
    color: var(--sld-orange);
}

.sld-footer__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--sld-dark);
    margin-bottom: 15px;
}

.sld-footer__info {
    list-style: none;
    margin: 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sld-footer__info li {
    font-family: 'Anybody', sans-serif;
    color: var(--sld-dark);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    font-size: 13px;
}

.sld-footer__info a {
    color: var(--sld-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sld-footer__info a:hover {
    color: var(--sld-orange);
}

.sld-footer__social {
    display: flex;
    gap: 14px;
}

.sld-social__link {
    color: var(--sld-dark);
    transition: color 0.2s ease, transform 0.15s ease;
    display: flex;
    align-items: center;
}

.sld-social__link:hover {
    color: var(--sld-orange);
    transform: translateY(-2px);
}

.sld-footer__info .sld-social__link {
    gap: 8px;
}

@media (max-width: 768px) {
    .sld-footer__inner {
        flex-direction: column;
        gap: 32px;
    }

    .sld-footer__col {
        flex: 0 0 auto;
        width: 100%;
    }

    .sld-footer__desc {
        max-width: 100%;
    }
}


/* ============================================================
   Hero Section
   ============================================================ */

.sld-hero {
    position: relative;
    background-color: var(--sld-black);
    overflow: hidden;
    min-height: 420px;
}

.sld-hero::before,
.sld-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.sld-hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--sld-glow-red) 0%, transparent 70%);
    right: 5%;
    top: -10%;
    opacity: 0.75;
}

.sld-hero::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--sld-glow-blu) 0%, transparent 70%);
    right: 20%;
    bottom: -15%;
    opacity: 0.55;
}

.sld-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px var(--padding-x) 64px;
    gap: 40px;
}

.sld-hero__content {
    flex: 0 0 42%;
    max-width: 520px;
}

.sld-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--sld-white);
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.sld-hero__subtitle {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.875rem, 1.3vw, 1rem);
    font-weight: 400;
    color: var(--sld-grey);
    margin: 0 0 36px;
    line-height: 1.6;
}

.sld-hero__btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-white);
    border: 1.5px solid var(--sld-white);
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sld-hero__btn:hover,
.sld-hero__btn:focus {
    background: var(--sld-orange);
    border-color: var(--sld-orange);
    color: var(--sld-white);
    outline: none;
}

.sld-hero__visual {
    position: relative;
    flex: 0 0 54%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sld-hero__product-img {
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(208, 70, 0, 0.35));
}

.sld-hero__badge {
    position: absolute;
    top: 12px;
    right: 0;
    width: clamp(90px, 9vw, 120px);
    height: auto;
}

.sld-cert-bar {
    background: var(--sld-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px var(--padding-x);
    text-align: center;
}

.sld-cert-bar__text {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    font-weight: 400;
    color: var(--sld-white);
    margin: 0;
    line-height: 1.5;
}

.sld-cert-bar__text strong {
    font-weight: 500;
}

.sld-cert-bar__link {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--sld-black);
    background: transparent;
    border: 1.5px solid var(--sld-black);
    padding: 6px 18px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sld-cert-bar__link:hover,
.sld-cert-bar__link:focus {
    background: var(--sld-black);
    color: var(--sld-white);
    outline: none;
}

@media (max-width: 900px) {
    .sld-hero__inner {
        flex-direction: column;
        text-align: center;
    }
    .sld-hero__content {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .sld-hero__visual {
        flex: 0 0 auto;
        width: 100%;
    }
    .sld-hero__badge {
        top: 0;
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sld-hero__product-img {
        animation: none;
    }
}


/* ============================================================
   About / Features Section
   ============================================================ */

.sld-about {
    overflow: hidden;
}

.sld-about--dark {
    background: linear-gradient(135deg, #071108 0%, #442117 50%, #FFF0DD 100%);
    position: relative;
}

.sld-about--black {
    background-color: var(--sld-cream);
}

.sld-about--tested {
    background-color: var(--sld-black);
}

.sld-about__inner {
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 500px;
}

.sld-about__inner--reverse {
    flex-direction: row-reverse;
}

.sld-about__content {
    flex: 0 0 42%;
    padding: 64px var(--padding-x);
}

.sld-about__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--sld-white);
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.sld-about__title strong {
    font-weight: 400;
    color: var(--sld-orange);
}

.sld-about__title--large {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.3px;
}

.sld-about__text {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 14px;
}

.sld-about__text--em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.sld-about__text strong {
    font-weight: 500;
    color: var(--sld-white);
}

.sld-about__btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 9px 20px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cream {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-dark);
    border: 1.5px solid var(--sld-dark);
    padding: 9px 20px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sld-about__btn:hover,
.sld-about__btn:focus {
    background: var(--sld-orange);
    border-color: var(--sld-orange);
    outline: none;
}

.sld-about__media {
    flex: 0 0 58%;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sld-about__media--fill {
    align-self: stretch;
}

.sld-about__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sld-about__img--cover {
    height: 100%;
    min-height: 340px;
}

.sld-about__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sld-about__play:hover {
    opacity: 1;
    transform: scale(1.08);
}

.sld-about__play svg {
    width: 100%;
    height: 100%;
}

.sld-about--dark .sld-about__inner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 340px;
    height: 340px;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.06) 0px,
        rgba(255,255,255,0.06) 1px,
        transparent 1px,
        transparent 18px
    );
    pointer-events: none;
}

.sld-about__inner--centered {
    justify-content: center;
}

.sld-about__content--centered {
    flex: 0 0 100%;
    max-width: 720px;
    text-align: center;
    padding: 72px var(--padding-x);
    margin: 0 auto;
}

.sld-about__content--centered .sld-about__btn {
    margin: 0 auto;
}

.sld-about--dark-text .sld-about__title,
.sld-about--dark-text .sld-about__text,
.sld-about--dark-text .sld-about__text--em {
    color: var(--sld-dark);
}

@media (max-width: 900px) {
    .sld-about__inner,
    .sld-about__inner--reverse {
        flex-direction: column;
    }
    .sld-about__content {
        flex: 0 0 auto;
        padding: 48px var(--padding-x) 32px;
        width: 100%;
        box-sizing: border-box;
    }
    .sld-about__media {
        flex: 0 0 auto;
        width: 100%;
    }
    .sld-about__img--cover {
        min-height: 240px;
    }
}


/* ============================================================
   Video Block
   ============================================================ */

.sld-video-block {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sld-video-block__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.sld-video-block__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.sld-video-block__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px var(--padding-x);
    gap: 40px;
}

.sld-video-block__left {
    flex: 0 0 44%;
    max-width: 480px;
}

.sld-video-block__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--sld-white);
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.sld-video-block__text {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.88rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0 0 28px;
}

.sld-video-block__play {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.88;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-right: 10%;
}

.sld-video-block__play:hover {
    opacity: 1;
    transform: scale(1.1);
}

.sld-video-block__play svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .sld-video-block__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px var(--padding-x);
        gap: 32px;
    }
    .sld-video-block__left {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .sld-video-block__play {
        margin: 0 auto;
        align-self: center;
    }
}


/* ============================================================
   Products & Custom Section
   ============================================================ */

.sld-products {
    background-color: var(--sld-cream);
    padding: 72px 0;
}

.sld-products__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    gap: 48px;
}

.sld-products__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--sld-orange);
    margin: 0 0 32px;
    letter-spacing: 0.5px;
}

.sld-products__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sld-products__item {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.82rem, 1.2vw, 0.92rem);
    font-weight: 400;
    color: #222222;
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.sld-products__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%23ED5C33' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.sld-products__item strong {
    font-weight: 500;
    color: #111111;
}

.sld-products__note {
    font-family: 'Anybody', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #555555;
    margin: 0 0 28px;
    line-height: 1.5;
}

.sld-products__link {
    color: var(--sld-orange);
    text-decoration: underline;
}

.sld-products__link:hover {
    color: var(--sld-dark);
}

.sld-products__btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-dark);
    border: 1.5px solid var(--sld-dark);
    padding: 9px 20px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sld-products__btn:hover,
.sld-products__btn:focus {
    background: var(--sld-orange);
    border-color: var(--sld-orange);
    color: var(--sld-white);
    outline: none;
}

.sld-products__media {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sld-products__img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.12));
}

.sld-custom {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.sld-custom__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.sld-custom__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

.sld-custom__content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 72px var(--padding-x);
    margin-left: calc((100vw - var(--max-width)) / 2);
}

.sld-custom__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--sld-white);
    margin: 0 0 20px;
    letter-spacing: 0.5px;
}

.sld-custom__text {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.88rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0 0 28px;
}

.sld-custom__btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 9px 20px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sld-custom__btn:hover,
.sld-custom__btn:focus {
    background: var(--sld-orange);
    border-color: var(--sld-orange);
    outline: none;
}

@media (max-width: 900px) {
    .sld-products__inner {
        flex-direction: column;
        padding: 0 var(--padding-x);
        gap: 32px;
    }
    .sld-products {
        padding: 48px 0;
    }
    .sld-products__media {
        flex: 0 0 auto;
        width: 100%;
    }
    .sld-products__img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    .sld-custom__content {
        padding: 48px var(--padding-x);
        margin-left: 0;
    }
}


/* ============================================================
   Protects Section
   ============================================================ */

.sld-protects {
    position: relative;
    background-color: var(--sld-orange);
    padding: 80px 0 72px;
    overflow: hidden;
}

.sld-protects__lines {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sld-protects__lines svg {
    width: 100%;
    height: 100%;
}

.sld-protects__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

.sld-protects__heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--sld-white);
    text-align: center;
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.sld-protects__subheading {
    font-family: 'Anybody', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sld-white);
    text-align: center;
    margin: 0 0 32px;
    letter-spacing: 0.04em;
}

.sld-protects__grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sld-protects__col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sld-protects__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.sld-protects__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 0;
    cursor: pointer;
    text-align: left;
}

.sld-protects__plus {
    font-family: 'Anybody', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--sld-white);
    line-height: 1;
    transition: transform 0.25s ease;
    display: inline-block;
    width: 16px;
    flex-shrink: 0;
}

.sld-protects__trigger[aria-expanded="true"] .sld-protects__plus {
    transform: rotate(45deg);
}

.sld-protects__label {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 500;
    color: var(--sld-white);
    line-height: 1.3;
}

.sld-protects__panel {
    padding: 0 0 20px 26px;
    will-change: max-height, opacity;
}

.sld-protects__panel-intro {
    font-family: 'Anybody', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--sld-white);
    margin: 0 0 10px;
    line-height: 1.5;
}

.sld-protects__panel-text {
    font-family: 'Anybody', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0 0 10px;
}

.sld-protects__panel-tag {
    font-family: 'Anybody', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 900px) {
    .sld-protects__grid {
        flex-direction: column;
        gap: 0;
    }
    .sld-protects__lines {
        width: 60%;
        opacity: 0.5;
    }
}

@media (max-width: 580px) {
    .sld-protects__inner {
        padding: 0 var(--padding-x);
    }
    .sld-protects__lines {
        display: none;
    }
}


/* ============================================================
   Content Page (Gutenberg)
   ============================================================ */

.sld-content {
    background-color: var(--sld-cream);
    padding: 64px 0 80px;
}

.sld-content__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

/* ── Tipografia base ── */
.sld-content__inner p {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 400;
    color: var(--sld-dark);
    line-height: 1.8;
    margin: 0 0 20px;
}

/* ── Títulos ── */
.sld-content__inner h1,
.sld-content__inner h2,
.sld-content__inner h3,
.sld-content__inner h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: var(--sld-dark);
    line-height: 1.2;
    margin: 48px 0 16px;
}

.sld-content__inner h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 1px; }
.sld-content__inner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: 0.8px; }
.sld-content__inner h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); letter-spacing: 0.5px; }
.sld-content__inner h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); letter-spacing: 0.3px; }

/* Primeiro título sem margin-top */
.sld-content__inner > *:first-child,
.sld-content__inner h1:first-child,
.sld-content__inner h2:first-child {
    margin-top: 0;
}

/* ── Destaque laranja nos títulos ── */
.sld-content__inner h2 strong,
.sld-content__inner h3 strong {
    color: var(--sld-orange);
    font-weight: 400;
}

/* ── Listas ── */
.sld-content__inner ul,
.sld-content__inner ol {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 400;
    color: var(--sld-dark);
    line-height: 1.8;
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.sld-content__inner ul li,
.sld-content__inner ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

/* Bullet laranja */
.sld-content__inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--sld-orange);
    border-radius: 50%;
}

/* Número laranja */
.sld-content__inner ol {
    counter-reset: sld-counter;
}

.sld-content__inner ol li {
    counter-increment: sld-counter;
}

.sld-content__inner ol li::before {
    content: counter(sld-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--sld-orange);
    letter-spacing: 0.5px;
}

/* ── Separador ── */
.sld-content__inner hr {
    border: none;
    border-top: 1.5px solid rgba(7, 17, 8, 0.12);
    margin: 48px 0;
}

/* ── Destaque / citação ── */
.sld-content__inner blockquote {
    border-left: 4px solid var(--sld-orange);
    margin: 32px 0;
    padding: 16px 24px;
    background-color: var(--sld-cream);
}

.sld-content__inner blockquote p {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    font-weight: 500;
    font-style: italic;
    color: var(--sld-dark);
    margin: 0;
}

/* ── Links ── */
.sld-content__inner a {
    color: var(--sld-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.sld-content__inner a:hover {
    color: var(--sld-dark);
}

/* ── Imagens ── */
.sld-content__inner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px auto;
}

.sld-content__inner figure {
    margin: 32px 0;
}

.sld-content__inner figcaption {
    font-family: 'Anybody', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(7, 17, 8, 0.5);
    text-align: center;
    margin-top: 8px;
}

/* ── Bloco de aviso/destaque (Gutenberg "callout") ── */
.sld-content__inner .wp-block-group {
    background-color: var(--sld-dark);
    padding: 32px 36px;
    margin: 40px 0;
}

.sld-content__inner .wp-block-group p,
.sld-content__inner .wp-block-group h2,
.sld-content__inner .wp-block-group h3 {
    color: var(--sld-white);
    margin-top: 0;
}

/* ── Tabela ── */
.sld-content__inner table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Anybody', sans-serif;
    font-size: 0.88rem;
    margin: 32px 0;
}

.sld-content__inner th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    background-color: var(--sld-dark);
    color: var(--sld-white);
    padding: 12px 16px;
    text-align: left;
}

.sld-content__inner td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(7, 17, 8, 0.1);
    color: var(--sld-dark);
    vertical-align: top;
}

.sld-content__inner tr:nth-child(even) td {
    background-color: rgba(7, 17, 8, 0.03);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sld-content {
        padding: 48px 0 64px;
    }
}

@media (max-width: 480px) {
    .sld-content {
        padding: 36px 0 48px;
    }
    .sld-content__inner .wp-block-group {
        padding: 24px 20px;
    }
    .sld-content__inner blockquote {
        padding: 12px 16px;
    }
}


/* ============================================================
   Página Sobre
   ============================================================ */

/* ── Hero ── */
.sld-about-hero {
    background-color: var(--sld-cream);
    padding: 80px 0;
}

.sld-about-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.sld-about-hero__left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sld-contact__eyebrow {
    font-family: 'Anybody', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sld-orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.sld-about-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 14vw, 12rem);
    font-weight: 400;
    color: var(--sld-dark);
    line-height: 0.9;
    letter-spacing: -2px;
}

.sld-about-hero__right {
    flex: 1;
    padding-top: 16px;
}

.sld-about-hero__big {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--sld-dark);
    line-height: 1.5;
    margin: 0 0 24px;
}

.sld-about-hero__big em {
    font-style: italic;
    color: var(--sld-orange);
}

.sld-about-hero__text {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    font-weight: 400;
    color: rgba(7, 17, 8, 0.72);
    line-height: 1.8;
    margin: 0 0 16px;
}

/* ── Stats ── */
.sld-about-divider {
    background-color: var(--sld-dark);
    padding: 64px 0;
}

.sld-about-divider__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.sld-about-stat {
    flex: 1;
    text-align: center;
}

.sld-about-stat__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--sld-orange);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sld-about-stat__number span {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--sld-cream);
    margin-left: 4px;
}

.sld-about-stat__label {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 240, 221, 0.65);
    line-height: 1.5;
}

/* ── Missão ── */
.sld-about-mission {
    background-color: var(--sld-dark);
    padding: 0 0 80px;
    border-top: 1px solid rgba(255, 240, 221, 0.08);
}

.sld-about-mission__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.sld-about-mission__item {
    padding: 48px 40px;
    border: 1px solid rgba(255, 240, 221, 0.08);
    transition: background 0.25s ease;
}

.sld-about-mission__item:hover {
    background-color: rgba(255, 240, 221, 0.03);
}

.sld-about-mission__icon {
    color: var(--sld-orange);
    margin-bottom: 20px;
}

.sld-about-mission__item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--sld-cream);
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.sld-about-mission__item p {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.92rem);
    font-weight: 400;
    color: rgba(255, 240, 221, 0.65);
    line-height: 1.8;
    margin: 0;
}

/* ── CTA ── */
.sld-about-cta {
    background-color: var(--sld-orange);
    padding: 80px 0;
}

.sld-about-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.sld-about-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--sld-cream);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
}

.sld-about-cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.sld-about-cta__btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sld-about-cta__btn--primary {
    background-color: var(--sld-cream);
    color: var(--sld-dark);
    border: 1.5px solid var(--sld-cream);
}

.sld-about-cta__btn--primary:hover {
    background-color: var(--sld-dark);
    border-color: var(--sld-dark);
    color: var(--sld-cream);
}

.sld-about-cta__btn--secondary {
    background-color: transparent;
    color: var(--sld-cream);
    border: 1.5px solid rgba(255, 240, 221, 0.6);
}

.sld-about-cta__btn--secondary:hover {
    background-color: var(--sld-cream);
    border-color: var(--sld-cream);
    color: var(--sld-orange);
}

/* ── Responsive Sobre ── */
@media (max-width: 900px) {
    .sld-about-hero__inner {
        flex-direction: column;
        gap: 32px;
    }

    .sld-about-hero__title {
        font-size: clamp(5rem, 20vw, 8rem);
    }

    .sld-about-divider__inner {
        flex-direction: column;
        gap: 40px;
    }

    .sld-about-stat {
        text-align: left;
    }

    .sld-about-mission__inner {
        grid-template-columns: 1fr;
    }

    .sld-about-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .sld-about-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .sld-about-cta__btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sld-about-hero {
        padding: 48px 0;
    }

    .sld-about-mission__item {
        padding: 32px 20px;
    }

    .sld-about-cta {
        padding: 48px 0;
    }
}


/* ============================================================
   Página Contato
   ============================================================ */

.sld-page-contact {
    background-color: var(--sld-cream);
    padding: 80px 0;
    min-height: 80vh;
}

.sld-page-contact__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

/* ── Lado esquerdo: WhatsApp ── */
.sld-page-contact__left {
    flex: 0 0 38%;
    max-width: 420px;
}

.sld-page-contact__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--sld-dark);
    line-height: 1;
    letter-spacing: 1px;
    margin: 12px 0 20px;
}

.sld-contact__desc {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    font-weight: 400;
    color: rgba(7, 17, 8, 0.65);
    line-height: 1.8;
    margin: 0 0 32px;
}

.sld-page-contact__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-cream);
    background-color: var(--sld-dark);
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sld-page-contact__whatsapp:hover {
    background-color: var(--sld-orange);
}

/* ── Divisor vertical ── */
.sld-page-contact__divider {
    width: 1px;
    align-self: stretch;
    background-color: rgba(7, 17, 8, 0.12);
    flex-shrink: 0;
}

/* ── Lado direito: Formulário ── */
.sld-page-contact__right {
    flex: 1;
}

/* ── Formulário ── */
.sld-contact__form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sld-contact__row {
    display: flex;
    gap: 16px;
}

.sld-contact__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sld-contact__field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sld-contact__field input,
.sld-contact__field textarea {
    font-family: 'Anybody', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--sld-dark);
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(7, 17, 8, 0.25);
    padding: 10px 0;
    outline: none;
    width: 100%;
    transition: border-color 0.2s ease;
    resize: none;
}

.sld-contact__field input::placeholder,
.sld-contact__field textarea::placeholder {
    color: rgba(7, 17, 8, 0.4);
}

.sld-contact__field input:focus,
.sld-contact__field textarea:focus {
    border-color: var(--sld-orange);
}

.sld-contact__submit button {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--sld-cream);
    background-color: var(--sld-dark);
    border: none;
    padding: 14px 36px;
    cursor: pointer;
    transition: background 0.2s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.sld-contact__submit button:hover {
    background-color: var(--sld-orange);
}

/* ── Sucesso / Erro ── */
.sld-contact__success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px;
    background-color: rgba(7, 17, 8, 0.04);
    border-left: 3px solid var(--sld-orange);
    margin-top: 32px;
}

.sld-contact__success svg {
    color: var(--sld-orange);
}

.sld-contact__success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--sld-dark);
    margin: 0;
}

.sld-contact__success p {
    font-family: 'Anybody', sans-serif;
    font-size: 0.9rem;
    color: rgba(7, 17, 8, 0.65);
    margin: 0;
}

.sld-contact__error {
    font-family: 'Anybody', sans-serif;
    font-size: 0.88rem;
    color: #c0392b;
    padding: 12px 16px;
    border-left: 3px solid #c0392b;
    background-color: rgba(192, 57, 43, 0.06);
    margin-top: 16px;
}

/* ── Responsive Contato ── */
@media (max-width: 900px) {
    .sld-page-contact__inner {
        flex-direction: column;
        gap: 48px;
    }

    .sld-page-contact__left {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .sld-page-contact__divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .sld-contact__row--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sld-page-contact {
        padding: 48px 0;
    }

    .sld-contact__submit button {
        width: 100%;
    }
}