/* Reset e configurações básicas - MOBILE FIRST */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px; /* Base mobile */
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Variáveis CSS */
:root {
    --icons-thickness: 1.5px;
    --primary-color: #333;
    --accent-color: #007bff;
    --background-color: #fff;
    --text-color: #333;
    --border-color: #e5e5e5;
}

/* Header simples - logo centralizada */
.header {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 64px;
    transform: translateY(0);
    transition: transform .35s ease, opacity .35s ease;
    opacity: 1;
}

.header--hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header__logo-link {
    display: flex;
    align-items: center;
}

.header__logo {
    height: 100px;
    width: auto;
}

/* Menu mobile - SEMPRE VISÍVEL */
.menu-drawer-container {
    display: block; /* Sempre visível */
}

/* Menu inline - ESCONDIDO POR PADRÃO */
.header__inline-menu {
    display: none; /* Escondido no mobile */
}

/* Navegação inline - DESKTOP APENAS */
.header__inline-menu {
    display: none; /* Escondido por padrão */
}

.list-menu {
    list-style: none;
    display: flex;
    gap: 1rem; /* Gap menor para mobile */
    flex-wrap: wrap;
}

.header__menu-item {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem; /* Texto menor para mobile */
    padding: 0.5rem;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent; /* Remove highlight no mobile */
}

.header__menu-item:hover,
.header__menu-item:focus {
    color: var(--accent-color);
}

.header__active-menu-item-v2 {
    color: var(--accent-color);
}

/* Logo - OTIMIZADO PARA MOBILE */
.header__heading-link {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Não encolhe */
}

.header__heading-logo {
    max-height: 32px; /* Menor para mobile */
    width: auto;
    max-width: 120px; /* Limita largura no mobile */
}

.header__heading-logo--secondary {
    display: none; /* Esconde logo secundário no mobile */
}

/* Ícones do header - MOBILE FIRST */
.header__icons {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Gap menor para mobile */
    flex-shrink: 0;
}

.header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; /* Área de toque maior para mobile */
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    border-radius: 8px; /* Cantos arredondados */
}

.header__icon:hover,
.header__icon:focus {
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.05);
}

.header__icon:active {
    transform: scale(0.95); /* Feedback visual no toque */
}

.icon {
    width: 22px; /* Ícones um pouco menores */
    height: 22px;
    stroke-width: var(--icons-thickness);
}

/* Ícone hamburger */
.icon-hamburger {
    display: flex !important;
    align-items: flex-start;
    flex-direction: column;
    gap: calc(8px - var(--icons-thickness));
    width: 24px;
    height: 18px;
}

.icon-hamburger span {
    display: block;
    width: 100%;
    height: var(--icons-thickness);
    background: currentColor;
    border-radius: 4px;
}

/* Modal de busca - MOBILE FIRST */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    padding: 1rem;
}

.search-modal[open] {
    display: flex;
    align-items: flex-start; /* Alinha no topo para mobile */
    justify-content: center;
    padding-top: 2rem;
}

.search-modal__content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.search__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.field {
    position: relative;
}

.field__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
}

.search__input:focus + .field__label,
.search__input:not(:placeholder-shown) + .field__label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: white;
    padding: 0 0.25rem;
}

/* Menu drawer mobile - OTIMIZADO */
.menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85vw; /* Responsivo à largura da tela */
    max-width: 320px;
    height: 100vh;
    background: white;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.menu-drawer.open {
    left: 0;
}

.menu-drawer__inner-container {
    padding: 1rem;
}

.menu-drawer__title-and-close-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.menu-drawer__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.menu-drawer__menu {
    list-style: none;
}

.menu-drawer__menu-item {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.menu-drawer__menu-item:hover,
.menu-drawer__menu-item:focus {
    color: var(--accent-color);
}

.menu-drawer__menu-item--active {
    color: var(--accent-color);
    font-weight: 600;
}

/* =====================
   GALERIA DE PRODUTO
   ===================== */

.product-gallery {
    position: relative;
    width: 100%;
    background: #f8f8f8;
}

/* Trust badge */
.trust-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    pointer-events: none;
}

.trust-badge img {
    width: 160px;
    height: auto;
}

/* Slider principal */
.slider-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    touch-action: pan-y;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* Setas de navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: opacity 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    color: #333;
}

.slider-arrow--prev { left: 10px; }
.slider-arrow--next { right: 10px; }

.slider-arrow:active {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(0.92);
}

.slider-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Contador */
.slide-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    pointer-events: none;
}

/* Miniaturas */
.slider-thumbs {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #fff;
}

.slider-thumbs::-webkit-scrollbar {
    display: none;
}

.thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.is-active {
    border-color: #333;
}

.thumb:active {
    opacity: 0.75;
}

/* =====================
   SEÇÃO DE PRODUTO
   ===================== */

.product-info {
    padding: 1.25rem 1rem 6rem;
    background: #fff;
}

/* Título */
.product-info__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: #111;
}

/* Estrelas */
.product-info__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
}

.stars__bg { color: #e0e0e0; }

.stars__fill {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ffcc00;
}

.product-info__reviews {
    font-size: 0.85rem;
    color: #555;
}

/* Preço */
.product-info__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-sale {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.price-compare s {
    font-size: 1.1rem;
    color: #888;
}

.price-badge {
    background: #f27321;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.price-badge--sm {
    font-size: 0.7rem;
    padding: 2px 6px;
}

/* Benefícios emoji */
.product-info__benefits {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-info__benefits p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #222;
}

/* Bundle selector */
.bundle {
    margin-bottom: 1.5rem;
}

.bundle__title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: #111;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    border-radius: 6px 6px 0 0;
    text-align: center;
}

.bundle__options {
    border: 1.5px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.bundle__option {
    display: block;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.bundle__option:last-child { border-bottom: none; }

.bundle__option input[type="radio"] { display: none; }

.bundle__option-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    transition: background 0.15s;
    position: relative;
}

.bundle__option-inner::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 0.75rem;
    transition: border-color 0.15s, background 0.15s;
}

.bundle__option--selected .bundle__option-inner {
    background: #fafafa;
}

.bundle__option--selected .bundle__option-inner::before {
    border-color: #111;
    background: #111;
    box-shadow: inset 0 0 0 3px #fff;
}

.bundle__option-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bundle__option-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.bundle__option-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: #d74e00;
    padding: 2px 7px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

.bundle__option-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.bundle__option-price {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.bundle__option-unit {
    font-size: 0.7rem;
    color: #888;
}

.bundle__option-full {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through;
}

/* Stock status */
.product-info__stock {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.25rem;
}

/* Botão ATC */
.btn-atc {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 1.5rem;
}

.btn-atc--primary {
    background: #f27321;
    color: #fff;
}

.btn-atc--sold-out {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

.btn-atc--green {
    background: #16a34a;
    color: #fff;
}

.btn-atc--green:hover {
    background: #15803d;
}

.btn-atc:not(:disabled):active { transform: scale(0.98); }

/* Timeline de entrega */
.shipping-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem 0.5rem 0.5rem;
    background: #f4f4f4;
    border-radius: 8px;
}

.shipping-timeline__bar {
    position: absolute;
    top: 2rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #bbb;
    z-index: 0;
}

.shipping-checkpoint {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.shipping-checkpoint__icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.shipping-checkpoint__date {
    font-size: 0.72rem;
    color: #333;
    line-height: 1.3;
}

.shipping-checkpoint__label {
    font-size: 0.68rem;
    color: #888;
}

/* Descrição */
.product-info__description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Trust icons */
.trust-icons {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.trust-icons__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icons__item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-icons__item span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #222;
}

/* Review card */
.review-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #38604c;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.review-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.review-card__text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-card__name {
    font-size: 0.8rem;
    font-weight: 600;
}

.review-card__stars {
    color: #ffcc00;
    font-size: 0.9rem;
}

/* Acordeons */
.accordions {
    margin-bottom: 2rem;
}

.accordion {
    border-top: 1px solid #e5e5e5;
}

.accordion:last-child { border-bottom: 1px solid #e5e5e5; }

.accordion__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.accordion__summary::-webkit-details-marker { display: none; }

.accordion__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #555;
    transition: transform 0.25s;
}

details[open] .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    padding: 0 0 1rem;
    font-size: 0.87rem;
    line-height: 1.6;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Sticky ATC */
.sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 900;
    padding: 0.75rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-atc.is-visible {
    transform: translateY(0);
}

.sticky-atc__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-atc__img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sticky-atc__info {
    flex: 1;
    min-width: 0;
}

.sticky-atc__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-atc__price {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.sticky-atc__btn {
    flex-shrink: 0;
    width: auto;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Bundle interativo */
.bundle__option--selected .bundle__option-inner::before {
    border-color: #111;
    background: #111;
    box-shadow: inset 0 0 0 3px #fff;
}

/* =====================
   SEÇÃO: BANNER
   ===================== */

.banner-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.banner-section__img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.hidden { display: none !important; }

/* =====================
   SEÇÃO: TICKER
   ===================== */

.ticker-section {
    background: #fff;
}

.ticker-section__heading {
    padding: 1.75rem 1rem 1.25rem;
    text-align: center;
}

.ticker-section__heading h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111;
}

.ticker-section__band {
    background: #fff;
    overflow: hidden;
    padding: 1.1rem 0;
    /* altura fixa que mostra ~3 itens */
    max-height: 15rem;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.ticker-track {
    display: flex;
    flex-direction: column;
    animation: vertTicker 14s linear infinite;
}

@keyframes vertTicker {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* sobe até a metade (duplicata) */
}

.ticker-item {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    padding: 0.35rem 1.5rem;
    line-height: 1.25;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* =====================
   SEÇÃO: IMAGEM + TEXTO
   ===================== */

.image-text-section {
    background: #fff;
    color: #111;
}

.image-text-section__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.image-text-section__media--grid {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.image-text-section__media--grid img {
    aspect-ratio: 1 / 1;
}

.image-text-section__media--carousel {
    aspect-ratio: 1 / 1;
    position: relative;
}

/* Carrossel Experiência Divertida */
.exp-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.exp-carousel__track {
    display: flex;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.exp-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exp-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

.exp-carousel__arrow--prev { left: 12px; }
.exp-carousel__arrow--next { right: 12px; }

.exp-carousel__arrow svg {
    width: 20px;
    height: 20px;
}

.exp-carousel__arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.exp-carousel__dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.exp-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.exp-carousel__dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.image-text-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-text-section__content {
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-text-section__heading {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #111;
}

.image-text-section__body {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
}

/* =====================
   SEÇÃO: FAQ
   ===================== */

.faq-section {
    background: #fff;
    padding: 2rem 1rem 2.5rem;
}

.faq-section__title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111;
    letter-spacing: -0.02em;
}

.faq-section__list .accordion {
    border-top: 1px solid #e5e5e5;
}

.faq-section__list .accordion:last-child {
    border-bottom: 1px solid #e5e5e5;
}

/* =====================
   UTILITÁRIOS
   ===================== */

/* Utilitários */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-inset:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
}

.link {
    text-decoration: none;
    color: inherit;
}

.gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.color-background-1 {
    background-color: var(--background-color);
}

.color-accent-1 {
    color: var(--accent-color);
}

/* Overlay para menus mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Melhorias para toque */
.header__icon,
.menu-drawer__menu-item,
.header__menu-item {
    touch-action: manipulation;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Otimizações para dispositivos pequenos */
@media (max-width: 375px) {
    .header--middle-center {
        padding: 0.5rem;
    }
    
    .header__heading-logo {
        max-height: 28px;
        max-width: 100px;
    }
    
    .header__icons {
        gap: 0.25rem;
    }
    
    .header__icon {
        width: 40px;
        height: 40px;
    }
    
    .menu-drawer {
        width: 90vw;
    }
}

/* Orientação landscape em mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .menu-drawer {
        width: 50vw;
        max-width: 300px;
    }
    
    .search-modal[open] {
        align-items: center;
        padding-top: 1rem;
    }
}

/* =========================
   SEÇÃO: AVALIAÇÕES
   ========================= */
.testimonials {
    background: #fff;
    padding: 2.4rem 0 2rem;
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 1.6rem;
}

.testimonials__title {
    font-size: 2rem;
    letter-spacing: .05em;
    margin: 0 0 0.6rem;
    padding: 0 1.6rem;
}

.testimonials__title strong {
    font-weight: 800;
}

.testimonials__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.testimonials__rating {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
}

.testimonials__count {
    font-size: 1.3rem;
    color: #666;
}

.testimonials__carousel {
    overflow: hidden;
    padding: 0 1.6rem 2rem;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
}

.testimonials__carousel:active {
    cursor: grabbing;
}

.testimonials__track {
    display: flex;
    gap: 1rem;
    padding: 0 0.4rem;
    width: max-content;
    transition: transform 0.4s ease-out;
}

.testi-card {
    flex: 0 0 200px;
    width: 200px;
    background: #f8f8f8;
    border-radius: 0.8rem;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.testi-card__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.testi-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-card__stars {
    color: #ffcc00;
    font-size: 1.2rem;
    letter-spacing: .05em;
    padding: 0.5rem 0.8rem 0;
}

.testi-card__text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
    padding: 0.5rem 0.8rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-card__meta {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: auto 0 0;
    padding: 0.4rem 0.8rem 0.8rem;
}

/* Dots (legado - mantido para compatibilidade) */
.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: .8rem;
    margin-top: 2rem;
}

.testi-dot {
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.testi-dot.is-active {
    background: #2e2a39;
    transform: scale(1.3);
}

/* =========================
   FOOTER DO SITE
   ========================= */
.site-footer {
    background: #fff;
    color: #111;
    padding: 3.2rem 2rem 2rem;
}

.site-footer__top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.site-footer__logo-img {
    max-width: 180px;
    height: auto;
}

.site-footer__tagline {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.site-footer__links-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 .8rem;
    letter-spacing: .05em;
}

.site-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.site-footer__links a {
    color: #444;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color .2s;
}

.site-footer__links a:hover {
    color: #111;
}

.site-footer__bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
}

.site-footer__payments {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.site-footer__payments li {
    display: flex;
    align-items: center;
}

.site-footer__payments svg {
    border-radius: 4px;
}

.site-footer__copyright {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.site-footer__copyright a {
    color: #111;
    text-decoration: none;
}

/* Melhorias para tablets em modo retrato */
@media (min-width: 768px) and (max-width: 1024px) {
    .header--middle-center {
        padding: 1rem 2rem;
    }
    
    .header__heading-logo {
        max-height: 36px;
        max-width: 150px;
    }
    
    .header__heading-logo--secondary {
        display: block; /* Mostra logo secundário em tablets */
    }
}