*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-corpo);
  font-size: var(--font-base);
  color: var(--color-texto);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titulo);
  line-height: 1.2;
}

h1, h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h3, h4, h5, h6 {
  font-weight: 700;
}

.destaque {
  color: var(--color-destaque);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.container {
  margin: 0 auto;
}

/* Smartphones */
@media screen and (min-width: 0px) and (max-width: 767px) {
  .container { width: 90%; }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container { width: 90%; }
}

/* Laptops */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .container { width: 92%; max-width: 1320px; }
}

/* Desktops */
@media screen and (min-width: 1440px) {
  .container { width: 90%; max-width: 1440px; }
}

.btn-destaque {
  display: inline-block;
  background-color: var(--color-destaque);
  color: var(--color-white);
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: var(--font-sm);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: filter 0.2s ease;
}

.btn-destaque:hover {
  filter: brightness(0.9);
}

.section__titulo {
  font-size: var(--font-xl);
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ===== FAIXA DE ENTREGA (compartilhada) ===== */
.entrega-banner {
  position: relative;
  background: linear-gradient(100deg, #2da898 0%, var(--color-destaque) 45%, #2da898 100%);
  background-size: 200% 100%;
  animation: entrega-shimmer 6s ease-in-out infinite;
  overflow: hidden;
  padding-block: 0.95rem;
}

@keyframes entrega-shimmer {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

@media (prefers-reduced-motion: reduce) {
  .entrega-banner { animation: none; }
}

/* Linhas de brilho decorativas */
.entrega-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 60px,
    rgba(255,255,255,0.06) 60px,
    rgba(255,255,255,0.06) 61px
  );
  pointer-events: none;
}

.entrega-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}

.entrega-banner__icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-white);
}

.entrega-banner__texto {
  font-family: var(--font-titulo);
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.entrega-banner__texto strong {
  font-weight: 800;
}

@media (max-width: 480px) {
  .entrega-banner__inner {
    padding-inline: 1.25rem;
  }
}

/* ===== SEÇÃO CONTATO (compartilhada) ===== */
.contato {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background-color: var(--color-black);
  color: var(--color-white);
}

.contato__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contato__acento {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-destaque);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.contato__inner h2 {
  font-size: var(--font-xl);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.contato__subtitulo {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.contato__lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  margin-bottom: 2.5rem;
}

.contato__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.75);
}

.contato__item iconify-icon {
  font-size: 18px;
  color: var(--color-destaque);
  display: flex;
  flex-shrink: 0;
}

.contato__item a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.contato__item a:hover {
  color: var(--color-destaque);
}

.contato__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--color-destaque);
  color: var(--color-destaque);
  background: transparent;
  font-family: var(--font-titulo);
  font-size: var(--font-sm);
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.contato__cta:hover {
  background-color: var(--color-destaque);
  color: var(--color-white);
  gap: 0.8rem;
}

.contato__cta iconify-icon {
  font-size: 17px;
  display: flex;
}
