/* =============================================
   FLORIFESTA — style.css
   Estrutura:
   1. Reset & Variáveis
   2. Base
   3. Navegação
   4. Botões
   5. Hero
   6. Sobre
   7. DTF UV (Novidade)
   8. Produtos
   9. Sazonais
   10. Diferenciais
   11. Galeria
   12. Atacado
   13. Localização
   14. Footer
   15. Animações
   16. Responsivo (mobile)
============================================= */

/* ─── 1. RESET & VARIÁVEIS ─────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --laranja:        #E8600A;
  --laranja-claro:  #F5842B;
  --laranja-fundo:  #FFF4EC;
  --dourado:        #C9921A;
  --dourado-claro:  #F0C050;
  --creme:          #FDFAF5;
  --texto:          #1C1008;
  --texto-medio:    #5A3D1A;
  --texto-suave:    #9B7550;
  --borda:          rgba(201, 146, 26, 0.25);
  --ig-grad:        linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

html {
  scroll-behavior: smooth;
}

/* ─── 2. BASE ───────────────────────────────── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--texto);
  overflow-x: hidden;
}

/* ─── 3. NAVEGAÇÃO ──────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-nav img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--laranja);
}

.logo-nome span {
  color: var(--dourado);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texto-medio);
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--laranja);
}

.nav-cta {
  background: var(--laranja);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--laranja-claro) !important;
}

/* ─── 4. BOTÕES ─────────────────────────────── */
.btn-primario {
  background: var(--laranja);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primario:hover {
  background: var(--laranja-claro);
  transform: translateY(-2px);
}

.btn-secundario {
  background: transparent;
  color: var(--laranja);
  border: 1.5px solid var(--laranja);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-secundario:hover {
  background: var(--laranja-fundo);
}

.btn-instagram {
  background: var(--ig-grad);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-instagram:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ─── 5. HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 100px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 60vw; height: 90vh;
  background: radial-gradient(ellipse at center, #FDE8C8 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--laranja-fundo);
  border: 1px solid var(--borda);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dourado);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dourado);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--laranja);
}

.hero > .hero-text > p {
  font-size: 1.05rem;
  color: var(--texto-medio);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
}

.foto-principal {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--borda);
}

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

.foto-flutuante {
  position: absolute;
  bottom: -24px; left: -32px;
  width: 150px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.hero-stats {
  position: absolute;
  top: 32px; right: -16px;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--laranja);
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--texto-suave);
}

/* ─── 6. SOBRE ──────────────────────────────── */
.sobre {
  background: #fff;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.secao-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.75rem;
}

.sobre h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sobre p {
  color: var(--texto-medio);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.sobre-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sobre-foto {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borda);
}

.sobre-foto:first-child {
  grid-row: 1 / 3;
  border-radius: 20px;
  height: 420px;
}

.sobre-foto:not(:first-child) {
  height: 200px;
}

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

/* ─── 7. DTF UV ─────────────────────────────── */
.dtf {
  background: linear-gradient(135deg, #1C1008 0%, #3A1A05 100%);
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.dtf::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw; height: 80vh;
  background: radial-gradient(ellipse, rgba(240,192,80,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.dtf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,192,80,0.15);
  border: 1px solid rgba(240,192,80,0.4);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dourado-claro);
  margin-bottom: 1.5rem;
}

.dtf h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.dtf h2 em {
  color: var(--dourado-claro);
  font-style: italic;
}

.dtf p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.dtf-usos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
}

.dtf-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
}

.dtf-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dtf-foto {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

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

.dtf-foto.tall {
  grid-row: 1 / 3;
}

.dtf-foto.tall img  { height: 440px; }
.dtf-foto.short img { height: 210px; }

/* ─── 8. PRODUTOS ───────────────────────────── */
.produtos {
  padding: 80px 5%;
  background: var(--creme);
}

.produtos-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.produtos-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.produtos-header p {
  color: var(--texto-medio);
  font-weight: 300;
  line-height: 1.7;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.produto-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232, 96, 10, 0.12);
}

.produto-foto {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.produto-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.produto-card:hover .produto-foto img {
  transform: scale(1.05);
}

.produto-info {
  padding: 1.25rem;
}

.produto-icone {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.produto-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.produto-info p {
  font-size: 0.875rem;
  color: var(--texto-suave);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── 9. SAZONAIS ───────────────────────────── */
.sazonais {
  background: #fff;
  padding: 80px 5%;
}

.sazonais-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.sazonais-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.sazonais-header p {
  color: var(--texto-medio);
  font-weight: 300;
  line-height: 1.7;
}

.sazonais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sazonal-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

.sazonal-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.sazonal-card:hover img {
  transform: scale(1.06);
}

.sazonal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.sazonal-overlay h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.sazonal-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 300;
}

/* ─── 10. DIFERENCIAIS ──────────────────────── */
.diferenciais {
  background: var(--laranja);
  padding: 80px 5%;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.diferenciais h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: #fff;
}

.diferenciais-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.diferencial-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.diferencial-icone {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.diferencial-item h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.diferencial-item p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
  font-weight: 300;
}

/* ─── 11. GALERIA ───────────────────────────── */
.galeria {
  padding: 80px 5%;
  background: var(--creme);
}

.galeria-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.galeria-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.galeria-header p {
  color: var(--texto-medio);
  font-weight: 300;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.galeria-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borda);
  height: 220px;
}

.galeria-item:first-child {
  grid-column: 1 / 3;
  border-radius: 20px;
  height: 460px;
}

.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.galeria-item:hover img {
  transform: scale(1.04);
}

/* ─── 12. ATACADO ───────────────────────────── */
.atacado {
  background: #fff;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.atacado-foto {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--borda);
}

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

.atacado h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.atacado p {
  color: var(--texto-medio);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.atacado-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.5rem 0;
}

.tag {
  background: var(--laranja-fundo);
  border: 1px solid var(--borda);
  color: var(--laranja);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── 13. LOCALIZAÇÃO ───────────────────────── */
.localizacao {
  background: var(--texto);
  color: #fff;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.localizacao h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.localizacao-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.loc-icone {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.localizacao-item h4 {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}

.localizacao-item p {
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  line-height: 1.6;
}

.localizacao-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.localizacao-item a:hover {
  color: var(--dourado-claro);
}

.mapa-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.mapa-wrapper iframe {
  width: 100%; height: 100%;
  border: 0;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
  transition: opacity 0.2s, transform 0.15s;
}

.whatsapp-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.instagram-btn-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ig-grad);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
  margin-left: 0.75rem;
  transition: opacity 0.2s, transform 0.15s;
}

.instagram-btn-loc:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.loc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── 14. FOOTER ────────────────────────────── */
footer {
  background: #0F0A04;
  color: rgba(255,255,255,0.5);
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dourado-claro);
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

footer a:hover {
  color: var(--dourado-claro);
}

/* ─── 15. ANIMAÇÕES ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text { animation: fadeUp 0.8s ease both; }
.hero-img  { animation: fadeUp 0.8s 0.2s ease both; }

/* ─── 16. RESPONSIVO (MOBILE) ───────────────── */
@media (max-width: 768px) {
  nav ul { display: none; }

  .hero,
  .sobre,
  .dtf,
  .diferenciais,
  .atacado,
  .localizacao {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .diferenciais-lista,
  .dtf-fotos,
  .sazonais-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
  }

  .galeria-item:first-child {
    grid-column: auto;
    height: 280px;
  }

  .hero { padding-top: 80px; }

  .dtf-foto.tall img  { height: 280px; }
  .dtf-foto.short img { height: 200px; }

  .sazonal-card { height: 300px; }

  .instagram-btn-loc { margin-left: 0; }

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