/* ===== Art Decor - Decorações de Aniversário ===== */
:root {
  --fundo-claro: #fff8fc;
  --fundo-card: #ffffff;
  --fundo-secundario: #fff0f8;
  --roxo-vivo: #c084fc;
  --rosa-vivo: #f472b6;
  --azul-vivo: #38bdf8;
  --amarelo-vivo: #fbbf24;
  --laranja-vivo: #fb923c;
  --cyan-vivo: #22d3ee;
  --magenta-vivo: #e879f9;
  --branco: #ffffff;
  --texto-escuro: #4c1d95;
  --texto-suave: #6b21a8;
  --header-claro: #dbeafe;
  --sombra: rgba(236, 72, 153, 0.15);
  --sombra-forte: rgba(168, 85, 247, 0.25);
  --brilho: rgba(251, 191, 36, 0.4);
  /* compatibilidade */
  --rosa-claro: #fce7f3;
  --rosa-pastel: #fbcfe8;
  --azul-claro: #bae6fd;
  --azul-pastel: #e0f2fe;
  --dourado: #fbbf24;
  --dourado-claro: #fde68a;
  --dourado-escuro: #d97706;
  --cinza-suave: #6b21a8;
  --header-lilas: #fdf2f8;
  --header-lilas-escuro: #c084fc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--texto-escuro);
  background: linear-gradient(180deg, #fdf2f8 0%, #fff0f8 30%, #fce7f3 60%, #e0f2fe 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-claro);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(56, 189, 248, 0.2), 0 0 40px rgba(191, 219, 254, 0.3);
  padding: 0.25rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 0.65rem;
  position: relative;
  min-height: 0;
}

.nav-menus-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: space-evenly;
  width: 100%;
  max-width: 600px;
  gap: 1rem;
}

.logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Balões saindo da logo no header */
.logo-balloon {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: header-balloon-float 4s ease-in-out infinite;
  z-index: 1;
}

.logo-balloon-1 {
  width: 22px;
  height: 28px;
  top: -4px;
  right: -8px;
  background: linear-gradient(135deg, var(--rosa-vivo), var(--magenta-vivo));
  box-shadow: inset -2px -2px 4px rgba(255,255,255,0.3), 0 2px 8px rgba(236, 72, 153, 0.4);
  animation-delay: 0s;
}

.logo-balloon-2 {
  width: 18px;
  height: 22px;
  top: 12px;
  right: -18px;
  background: linear-gradient(135deg, var(--azul-vivo), var(--cyan-vivo));
  box-shadow: inset -2px -2px 4px rgba(255,255,255,0.3), 0 2px 8px rgba(6, 182, 212, 0.4);
  animation-delay: -1.2s;
}

.logo-balloon-3 {
  width: 20px;
  height: 25px;
  bottom: 8px;
  left: -12px;
  background: linear-gradient(135deg, var(--amarelo-vivo), var(--laranja-vivo));
  box-shadow: inset -2px -2px 4px rgba(255,255,255,0.3), 0 2px 8px rgba(251, 191, 36, 0.4);
  animation-delay: -2.5s;
}

.logo-balloon-4 {
  width: 16px;
  height: 20px;
  top: 20px;
  left: -16px;
  background: linear-gradient(135deg, var(--rosa-vivo), var(--cyan-vivo));
  box-shadow: inset -2px -2px 4px rgba(255,255,255,0.3), 0 2px 8px rgba(168, 85, 247, 0.3);
  animation-delay: -0.8s;
}

@keyframes header-balloon-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

.nav-menu a {
  font-family: 'Dancing Script', cursive;
  font-size: 1.65rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--texto-escuro);
  letter-spacing: 0.02em;
  transition: color 0.2s, transform 0.2s;
}

.nav-menu a:hover {
  color: var(--rosa-vivo);
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--rosa-vivo);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 12rem 1.5rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(251, 191, 36, 0.25) 0%, transparent 50%),
              radial-gradient(ellipse 60% 50% at 80% 80%, rgba(244, 114, 182, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-top {
  max-width: 640px;
  text-align: center;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin: 0 0 0.75rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5), 0 2px 4px rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--texto-suave);
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rosa-vivo) 0%, var(--magenta-vivo) 100%);
  color: var(--branco);
  box-shadow: 0 4px 24px rgba(244, 114, 182, 0.5), 0 0 30px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(244, 114, 182, 0.6), 0 0 40px rgba(251, 191, 36, 0.4);
}

/* Decoração hero */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.balloon {
  position: absolute;
  width: 60px;
  height: 75px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.balloon-1 {
  top: 15%;
  left: 10%;
  background: linear-gradient(135deg, var(--azul-vivo), var(--cyan-vivo));
  animation-delay: 0s;
}

.balloon-2 {
  top: 25%;
  right: 15%;
  background: linear-gradient(135deg, var(--rosa-vivo), var(--magenta-vivo));
  animation-delay: -2s;
}

.balloon-3 {
  bottom: 20%;
  left: 20%;
  background: linear-gradient(135deg, var(--amarelo-vivo), var(--laranja-vivo));
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.confetti {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, var(--dourado-claro) 2px, transparent 2px),
    radial-gradient(circle at 70% 60%, var(--rosa-pastel) 2px, transparent 2px),
    radial-gradient(circle at 40% 80%, var(--azul-claro) 2px, transparent 2px);
  background-size: 80px 80px;
  opacity: 0.3;
  animation: confettiMove 20s linear infinite;
}

@keyframes confettiMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* ===== Seções comuns ===== */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--texto-escuro);
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.section-subtitle {
  text-align: center;
  color: var(--texto-suave);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ===== Barra entre seções ===== */
section + section {
  border-top: 4px solid rgba(192, 132, 252, 0.55);
}

/* ===== Temas ===== */
.temas {
  padding: 5rem 0;
  background: var(--branco);
  box-shadow: 0 -4px 30px rgba(244, 114, 182, 0.08);
}

.temas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tema-card {
  background: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--sombra),
              0 0 0 1px rgba(244, 114, 182, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid rgba(251, 191, 36, 0.25);
  cursor: pointer;
  position: relative;
}

.tema-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rosa-vivo), var(--amarelo-vivo), var(--cyan-vivo));
  z-index: 1;
}

.tema-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(244, 114, 182, 0.25),
              0 0 0 2px var(--rosa-vivo),
              0 0 40px rgba(251, 191, 36, 0.2);
}

.tema-card-img {
  min-height: 260px;
  height: 260px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--fundo-secundario);
}

.tema-card-content {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, var(--fundo-claro) 100%);
  border-top: 1px solid rgba(244, 114, 182, 0.2);
}

.tema-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--texto-escuro);
  margin-bottom: 0.5rem;
}

.tema-card-content p {
  font-size: 0.95rem;
  color: var(--texto-suave);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox-overlay.lightbox-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.lightbox-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.3),
              0 0 0 3px rgba(251, 191, 36, 0.3);
  border: 2px solid rgba(244, 114, 182, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--rosa-vivo), var(--amarelo-vivo), var(--cyan-vivo));
  z-index: 1;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(244, 114, 182, 0.25);
  color: var(--texto-escuro);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--rosa-vivo);
  color: var(--branco);
}

.lightbox-img {
  max-width: 85vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-title {
  padding: 1rem 2rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--texto-escuro);
  text-align: center;
  margin: 0;
}

/* ===== Galeria ===== */
.galeria {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--fundo-secundario) 0%, var(--fundo-claro) 100%);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galeria-item {
  aspect-ratio: 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 24px var(--sombra);
  border: 2px solid rgba(251, 191, 36, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.galeria-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(244, 114, 182, 0.3), 0 0 25px rgba(251, 191, 36, 0.15);
}

.galeria-1 { background: linear-gradient(135deg, var(--rosa-vivo), var(--amarelo-vivo)); }
.galeria-2 { background: linear-gradient(135deg, var(--azul-vivo), var(--rosa-vivo)); }
.galeria-3 { background: linear-gradient(135deg, var(--amarelo-vivo), var(--magenta-vivo)); }
.galeria-4 { background: linear-gradient(135deg, var(--rosa-vivo), var(--cyan-vivo)); }
.galeria-5 { background: linear-gradient(135deg, var(--cyan-vivo), var(--amarelo-vivo)); }
.galeria-6 { background: linear-gradient(135deg, var(--roxo-vivo), var(--rosa-vivo)); }

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Sobre ===== */
.sobre {
  padding: 5rem 0;
  background: #e8dcef;
  box-shadow: 0 -4px 30px rgba(192, 132, 252, 0.12);
}

.sobre-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.sobre-logo {
  max-width: 200px;
  height: auto;
  flex-shrink: 0;
}

.sobre-texto {
  max-width: 520px;
}

.sobre-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--texto-escuro);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.sobre-texto p {
  margin-bottom: 1rem;
  color: var(--texto-suave);
}

/* ===== Contato ===== */
.contato {
  padding: 5rem 0;
  background: #bae6fd;
}

.contato-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contato-container .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.contato-container .section-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contato-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  margin: 0;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contato-whatsapp-link:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.contato-whatsapp-link:focus {
  outline: 2px solid #128c7e;
  outline-offset: 3px;
  color: #fff;
}
.contato-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-whatsapp-icon svg {
  display: block;
}
.contato-whatsapp-numero {
  letter-spacing: 0.02em;
}

.contato-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--texto-escuro);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(244, 114, 182, 0.35);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  background: var(--branco);
  color: var(--texto-escuro);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rosa-vivo);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contato-form .btn {
  align-self: center;
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 1.5rem;
  background: var(--header-claro);
  color: var(--texto-escuro);
  border-top: 4px solid rgba(192, 132, 252, 0.55);
  box-shadow: 0 -4px 24px rgba(56, 189, 248, 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  flex-shrink: 0;
}

.footer-info {
  text-align: left;
}

.footer-text {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--texto-escuro);
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--texto-suave);
  margin-bottom: 0.5rem;
}

.footer-dev {
  font-size: 0.9rem;
  color: var(--texto-suave);
  margin: 0;
}

.footer-dev a {
  color: var(--rosa-vivo);
  text-decoration: none;
  font-weight: 500;
}

.footer-dev a:hover {
  color: var(--roxo-vivo);
  text-decoration: underline;
}

/* ===== Botão flutuante WhatsApp ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.whatsapp-fab:focus {
  outline: 2px solid #128c7e;
  outline-offset: 2px;
}
.whatsapp-fab-label {
  white-space: nowrap;
}

/* ===== Modal WhatsApp (escolher tema) ===== */
.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.whatsapp-modal[hidden] {
  display: none;
}
.whatsapp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(76, 29, 149, 0.4);
  backdrop-filter: blur(4px);
}
.whatsapp-modal-box {
  position: relative;
  background: var(--fundo-card);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(192, 132, 252, 0.3);
}
.whatsapp-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rosa-pastel);
}
.whatsapp-modal-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--texto-escuro);
  margin: 0;
}
.whatsapp-modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--texto-suave);
  cursor: pointer;
  padding: 0 0.25rem;
}
.whatsapp-modal-close:hover {
  color: var(--roxo-vivo);
}
.whatsapp-modal-body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
}
.whatsapp-modal-desc {
  font-size: 0.95rem;
  color: var(--texto-suave);
  margin-bottom: 1rem;
}
.whatsapp-temas-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.whatsapp-tema-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--fundo-secundario);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.whatsapp-tema-item:hover {
  background: var(--rosa-claro);
}
.whatsapp-tema-item.selected {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}
.whatsapp-tema-item input {
  margin: 0;
  accent-color: #25d366;
}
.whatsapp-tema-item span {
  font-weight: 500;
  color: var(--texto-escuro);
}
.whatsapp-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--rosa-pastel);
}
.whatsapp-modal-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menus-wrapper {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 100px);
    background: var(--header-claro);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s;
    gap: 1.5rem;
    z-index: 99;
  }

  .nav-menus-wrapper.active {
    right: 0;
  }

  .logo-wrap {
    padding-right: 0.5rem;
  }

  .logo-balloon {
    width: 14px !important;
    height: 18px !important;
  }

  .logo-balloon-1 { top: -2px; right: -4px; }
  .logo-balloon-2 { top: 10px; right: -12px; }
  .logo-balloon-3 { bottom: 6px; left: -8px; }
  .logo-balloon-4 { top: 14px; left: -10px; }

  .logo-link {
    padding-right: 0;
  }

  .logo {
    height: 80px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: none;
  }

  .nav-menu a {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-content-top {
    max-width: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .temas-grid {
    grid-template-columns: 1fr;
  }

  .sobre-content {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-info {
    text-align: center;
  }

  .whatsapp-fab-label {
    display: none;
  }

  .whatsapp-fab {
    padding: 0.85rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .contato-whatsapp-link {
    padding: 1rem 1.25rem;
    font-size: 1.15rem;
    min-height: 48px;
  }
  .contato-whatsapp-icon svg {
    width: 28px;
    height: 28px;
  }
}
