/* ===================================
   MIABU – Catering Festero Valencia
   styles.css – Mobile-first Design
   =================================== */

/* ======= CSS VARIABLES ======= */
:root {
  --red: #D62828;
  --red-dark: #a81f1f;
  --orange: #F46036;
  --orange-light: #ff8c5a;
  --yellow: #F7B731;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --gray: #666;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --wa-green: #25D366;
  --wa-green-dark: #1aaa52;

  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.2);
  --transition: all 0.25s ease;

  --max-width: 1200px;
  --padding-x: 1.25rem;
}

/* ======= RESET & BASE ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }
section { padding: 5rem 0; }

/* ======= CONTAINER ======= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4 { font-family: var(--font-main); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

/* ======= TAGS ======= */
.tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.tag-red { background: rgba(214,40,40,0.12); color: var(--red); }
.tag-orange { background: rgba(244,96,54,0.12); color: var(--orange); }
.tag-white { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(214,40,40,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(214,40,40,0.45);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  transform: translateY(-2px);
  background: var(--wa-green-dark);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-large { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ======= SECTION HEADER ======= */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--gray);
  font-size: 1.05rem;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: -0.03em;
}
.logo span { color: var(--orange); }
.nav-links {
  display: none;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-wa { margin-left: auto; display: none; font-size: 0.9rem; padding: 0.65rem 1.25rem; }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-content h1 {
  font-weight: 900;
  margin: 1rem 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h1 br { display: none; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-sub br { display: none; }
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.hero-microcopy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0; top: 18px; }
}
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  background: var(--dark-2);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}
.trust-num {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-item span:last-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: none;
}

/* ==========================================
   PROBLEM / SOLUTION
   ========================================== */
.problem-solution { background: var(--gray-light); }
.problem-solution .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.problem-block, .solution-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.problem-block { border-top: 4px solid var(--red); }
.solution-block { border-top: 4px solid var(--orange); }
.problem-block h2 { color: var(--dark); margin-bottom: 1rem; }
.solution-block h2 { color: var(--dark); margin-bottom: 1rem; }
.problem-block p, .solution-block p { color: var(--gray); margin-bottom: 1.5rem; }
.problem-list li, .solution-list li {
  padding: 0.4rem 0;
  font-size: 0.97rem;
  color: var(--dark);
}

/* ==========================================
   SERVICES
   ========================================== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.5rem; color: var(--dark); }
.service-card p { font-size: 0.95rem; color: var(--gray); }

/* ==========================================
   MENUS
   ========================================== */
.menus { background: var(--dark); }
.menus .section-header h2 { color: var(--white); }
.menus .section-header p { color: rgba(255,255,255,0.6); }
.menus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.menu-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(244,96,54,0.3);
}
.menu-card-featured {
  border: 1px solid rgba(244,96,54,0.4);
  box-shadow: 0 0 40px rgba(244,96,54,0.15);
}
.menu-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}
.menu-badge-dark { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.15); }
.menu-badge-night { background: linear-gradient(135deg, #1a1a2e, #16213e); border: 1px solid rgba(255,255,255,0.15); }
.menu-header {
  padding: 1.75rem 1.75rem 1rem;
  text-align: center;
}
.menu-fallero { background: linear-gradient(135deg, rgba(214,40,40,0.2), rgba(0,0,0,0)); }
.menu-completa { background: linear-gradient(135deg, rgba(244,96,54,0.25), rgba(0,0,0,0)); }
.menu-resopon { background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(0,0,0,0)); }
.menu-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.menu-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.menu-price {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.menu-price strong {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.menu-price span { font-size: 0.85rem; }
.menu-body { padding: 0 1.75rem 1.75rem; }
.menu-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.menu-body ul { margin-bottom: 1rem; }
.menu-body ul li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.menus-footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.menus-footer p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(244,96,54,0.08), transparent 70%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.step-arrow { display: none; }
.step-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(244,96,54,0.3);
}
.step-num {
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.step-card h3 { color: var(--white); margin-bottom: 0.6rem; position: relative; z-index: 1; }
.step-card p { font-size: 0.92rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.how-cta { text-align: center; }
.microcopy-dark { margin-top: 0.85rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ==========================================
   PHOTO BREAK
   ========================================== */
.photo-break {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.photo-quote {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 0 var(--padding-x);
}
.photo-quote blockquote {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  max-width: 600px;
  line-height: 1.3;
}
.photo-quote blockquote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

/* ==========================================
   DIFERENCIACIÓN
   ========================================== */
.diferenciacion { background: var(--white); }
.dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.dif-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
}
.dif-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.dif-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.dif-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.dif-card p { font-size: 0.92rem; color: var(--gray); }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(244,96,54,0.3);
  background: rgba(255,255,255,0.06);
}
.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}
.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.avatar-red { background: linear-gradient(135deg, var(--red), #ff6b6b); }
.avatar-orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.avatar-dark { background: linear-gradient(135deg, #333, #555); }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ==========================================
   FAQS
   ========================================== */
.faqs { background: var(--gray-light); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--orange); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a00 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(244,96,54,0.1), transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.contact-text h2 { color: var(--white); margin-bottom: 1rem; }
.contact-text p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 500px; font-size: 1.05rem; }
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-trust span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.contact-wa-block p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.microcopy-light {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.contact-form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.form-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,96,54,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.field-hint { font-size: 0.77rem; color: var(--gray); margin-top: 0.3rem; display: block; }
.optional { color: var(--gray); font-weight: 400; }
.form-legal {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.85rem;
}
.form-success {
  text-align: center;
  padding: 2rem 0;
}
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--gray); margin-bottom: 1.75rem; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #070707;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.logo-light { color: var(--white); }
.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin: 0.5rem 0 0.4rem;
}
.footer-zone { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-contact h4, .footer-nav h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--orange); }
.footer-wa { color: var(--wa-green); }
.footer-wa:hover { color: var(--wa-green-dark); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  background: var(--wa-green-dark);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ==========================================
   RESPONSIVE – TABLET (≥ 640px)
   ========================================== */
@media (min-width: 640px) {
  :root { --padding-x: 2rem; }

  .hero-content h1 br { display: block; }
  .hero-sub br { display: block; }
  .hero-ctas { flex-direction: row; justify-content: center; }

  .trust-sep { display: block; }
  .trust-inner { gap: 0; }
  .trust-item { padding: 0 2rem; }

  .problem-solution .container { flex-direction: row; }
  .problem-block, .solution-block { flex: 1; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }
  .step-arrow {
    display: block;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.25);
    padding: 0 0.5rem;
  }

  .contact-inner { flex-direction: row; align-items: flex-start; }
  .contact-text { flex: 1; }
  .contact-form-block { flex: 1; max-width: 480px; }
}

/* ==========================================
   RESPONSIVE – DESKTOP (≥ 1024px)
   ========================================== */
@media (min-width: 1024px) {
  :root { --padding-x: 2.5rem; }

  .nav-links { display: flex; }
  .nav-wa { display: inline-flex; }
  .nav-toggle { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .menus-grid { grid-template-columns: 1fr 1fr 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }

  h2 { font-size: 2.5rem; }
  section { padding: 6rem 0; }
}

/* ==========================================
   MOBILE MENU OPEN
   ========================================== */
.navbar.menu-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
}
.navbar.menu-open .nav-links a { font-size: 1.5rem; }
.navbar.menu-open .nav-toggle span:nth-child(1) { transform: rotation(45deg) translate(5px, 5px); }
.navbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.menu-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
