/* =========================================
   FESTAFY LOCAÇÕES — styles.css
   ========================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow:    #FFD700;
  --yellow-dk: #E6BF00;
  --red:       #CC1F1F;
  --red-dk:    #A81818;
  --navy:      #1B2A6B;
  --navy-dk:   #111d4e;
  --white:     #FFFFFF;
  --cream:     #FFF9F0;
  --gray:      #F4F4F4;
  --text:      #222222;
  --text-soft: #555555;
  --whatsapp:  #25D366;
  --whatsapp-dk: #1EB85A;

  --font-display: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);
  --transition: 0.3s ease;

  --section-py: 80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn:active { transform: translateY(0); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}
.btn-yellow:hover { background: var(--yellow-dk); }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dk); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dk); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dk); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HEADER
   ========================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFDF72;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--yellow); }

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(0,0,0,0.7);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(0,0,0,0.08);
}

.nav-cta {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
}
.nav-cta:hover { background: var(--whatsapp-dk) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
#hero {
  min-height: 100vh;
  background: #FFDF72;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 { width: 400px; height: 400px; background: var(--yellow); top: -100px; right: -100px; }
.shape-2 { width: 250px; height: 250px; background: var(--red); bottom: -50px; left: -80px; }
.shape-3 { width: 150px; height: 150px; background: var(--yellow); top: 50%; left: 50%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: var(--section-py) 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--red); }

.hero-desc {
  color: rgba(0,0,0,0.65);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Hero image side */
.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-card {
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  max-width: 360px;
  width: 100%;
}

.hero-img-emoji {
  font-size: 7rem;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-img-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.hero-img-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.floating-badge {
  position: absolute;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.floating-badge.top { top: -16px; right: 24px; }
.floating-badge.bottom { bottom: -16px; left: 24px; background: var(--yellow); color: var(--navy); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* =========================================
   BENEFITS
   ========================================= */
#benefits {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.benefit-card:nth-child(1) { border-color: var(--yellow); }
.benefit-card:nth-child(2) { border-color: var(--red); }
.benefit-card:nth-child(3) { border-color: var(--navy); }
.benefit-card:nth-child(4) { border-color: var(--yellow); }

.benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* =========================================
   KITS
   ========================================= */
#kits {
  padding: var(--section-py) 0;
  background: var(--white);
}

.kits-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

/* Filter buttons */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--gray);
  color: var(--text);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* Kits grid */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.kit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid #eee;
}
.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}

.kit-card[style*="display: none"] { display: none !important; }

.kit-thumb {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.kit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.kit-card:hover .kit-thumb img {
  transform: scale(1.05);
}

.kit-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kit-body {
  padding: 14px 16px;
}

.kit-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.kit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.kit-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kit-price-old {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-soft);
  text-decoration: line-through;
}
.kit-price-new {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #1a8c3c;
}

.btn-kit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-kit:hover { background: var(--red); transform: scale(1.05); }

/* =========================================
   COMO FUNCIONA
   ========================================= */
#como-funciona {
  padding: var(--section-py) 0;
  background: #FFDF72;
}

#como-funciona .section-tag { background: rgba(0,0,0,0.1); color: var(--navy); }
#como-funciona .section-title { color: var(--navy); }
#como-funciona .section-subtitle { color: rgba(0,0,0,0.65); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(0,0,0,0.2) 0,
    rgba(0,0,0,0.2) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 104px;
  height: 104px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(27,42,107,0.15);
  transition: transform var(--transition);
}
.step-item:hover .step-num { transform: scale(1.1); }

.step-emoji {
  font-size: 1.8rem;
  display: block;
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
}

/* =========================================
   GALLERY
   ========================================= */
#galeria {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 340px;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,42,107,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 2rem;
}

/* Gallery uses same bg classes as kit thumbs */

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 860px;
  max-height: 85vh;
  width: 90%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: block;
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================
   TESTIMONIALS
   ========================================= */
#depoimentos {
  padding: var(--section-py) 0;
  background: var(--white);
}

.carousel-wrapper {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  border: 2px solid #eee;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.testimonial-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-hover); }

.testimonial-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

.stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
}
.author-tag {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: none;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.carousel-btn:hover { background: var(--navy); color: var(--white); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--navy); transform: scale(1.4); }

/* =========================================
   CONTACT
   ========================================= */
#contato {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  justify-content: center;
}

/* Info side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition);
}
.info-card:hover { transform: translateX(6px); }

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook  { background: #1877f2; }
.social-btn.tiktok    { background: #000; }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: #FFDF72;
  color: rgba(0,0,0,0.7);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.footer-brand .logo-text { font-size: 1.6rem; }
.footer-brand .logo-img { height: 42px; }

.footer-tagline {
  font-size: 0.9rem;
  margin: 12px 0 20px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--navy); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--red); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  font-size: 1.9rem;
  transition: transform var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.12); }

.whatsapp-float a::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 62px;
  background: rgba(37,211,102,0.4);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* =========================================
   MOBILE NAV
   ========================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #e8c94a;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
  .hamburger { display: flex; }
}

/* =========================================
   RESPONSIVE — TABLET (768px)
   ========================================= */
@media (max-width: 900px) {
  :root { --section-py: 60px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .kits-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }

  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { min-width: calc(50% - 12px); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   RESPONSIVE — MOBILE (480px)
   ========================================= */
@media (max-width: 480px) {
  :root { --section-py: 48px; }

  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 16px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .kits-grid     { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }

  .kits-header { flex-direction: column; align-items: flex-start; }

  .testimonial-card { min-width: 100%; width: 100%; }
  .carousel-track { gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px 18px; }
  .social-row { flex-wrap: wrap; }
}
