/*!
Theme Name: Real Loures SP
Theme URI: https://reallouressp.com
Author: Real Loures SP
Author URI: https://reallouressp.com
Description: Tema profissional para Real Loures SP - Limpeza Técnica Profissional
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: real-loures-sp
Domain Path: /languages
*/

/* ── CSS VARIABLES ── */
:root {
  --navy: #0B1D3A;
  --navy-light: #122347;
  --navy-mid: #1a3560;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A8892A;
  --gold-glow: rgba(201,168,76,0.15);
  --white: #FFFFFF;
  --gray-bg: #F4F6F8;
  --gray-mid: #E2E8F0;
  --gray-text: #8B9BAD;
  --gray-dark: #4A5568;
  --text-main: #1A202C;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-main); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}

.section-title { font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); }
.section-title.light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--gray-dark); line-height: 1.7; max-width: 560px; }
.section-sub.light { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-size: 15px;
  font-weight: 600; border-radius: 8px; padding: 14px 28px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); text-decoration: none; white-space: nowrap;
}

.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy); box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
.btn-gold:hover { background: linear-gradient(135deg, #f0d48a, var(--gold-light)); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.55); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

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

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
#navbar.scrolled { background: rgba(11,29,58,0.96); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.35); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3)); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }

.nav-cta .btn { padding: 10px 22px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 24px; font-weight: 700; text-decoration: none; transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); }

.mobile-close { position: absolute; top: 20px; right: 24px; font-size: 32px; color: var(--white); cursor: pointer; background: none; border: none; font-family: var(--font); }

/* ── SOFA SCROLL BANNER ── */
#sofa-banner {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  background: var(--navy); overflow: hidden; display: flex; align-items: center; justify-content: center;
}

.sofa-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.sofa-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.sofa-orb-1 { top: -100px; right: -100px; width: 500px; height: 500px; animation: floatOrb 8s ease-in-out infinite; }
.sofa-orb-2 { bottom: -150px; left: -50px; width: 400px; height: 400px; animation: floatOrb 11s ease-in-out infinite reverse; }

@keyframes floatOrb { 0%,100% { transform: translate(0,0); } 50% { transform: translate(15px,-15px); } }

.sofa-scene-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; align-items: flex-end;
  padding-bottom: 80px;
}

.sofa-scene { position: relative; width: 540px; height: 280px; }
#sofa-svg { width: 100%; height: 100%; }

/* Dirt layers */
.dirt-spot {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(80,50,20,0.75) 0%, rgba(60,35,10,0.3) 60%, transparent 100%);
  transition: opacity 0.15s linear; pointer-events: none;
}

.dirt-spot-1 { width: 90px; height: 55px; top: 52px; left: 80px; transform: rotate(-15deg); }
.dirt-spot-2 { width: 70px; height: 40px; top: 62px; left: 240px; transform: rotate(10deg); }
.dirt-spot-3 { width: 80px; height: 45px; top: 55px; left: 380px; transform: rotate(-8deg); }
.dirt-spot-4 { width: 110px; height: 35px; top: 145px; left: 160px; transform: rotate(5deg); }
.dirt-spot-5 { width: 60px; height: 30px; top: 155px; left: 360px; transform: rotate(-12deg); }

/* Vacuum cleaner */
#vacuum-wrap {
  position: absolute; bottom: 68px; right: -200px;
  width: 200px; height: 160px;
  transition: none; pointer-events: none;
}

#vacuum-svg { width: 100%; height: 100%; }

/* Suction particles */
.suction-particle {
  position: absolute; border-radius: 50%;
  background: rgba(201,168,76,0.6);
  pointer-events: none; opacity: 0;
  animation: suck 0.6s ease-in infinite;
}

@keyframes suck {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.1) translateY(-20px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.5s;
}

.scroll-arrow {
  width: 28px; height: 28px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Clean shine effect */
.shine-overlay {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0) 0%, rgba(201,168,76,0.08) 50%, rgba(201,168,76,0) 100%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}

/* ── HERO TEXT (below banner) ── */
#hero {
  background: var(--navy); padding: 80px 0 96px; position: relative; overflow: hidden;
}

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-orb { position: absolute; border-radius: 50%; }
.hero-orb-1 { top: -80px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); }
.hero-orb-2 { bottom: -100px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}

.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

.hero-headline { font-size: clamp(36px,5.5vw,64px); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px; max-width: 780px; }
.hero-headline span { color: var(--gold); }

.hero-sub { font-size: clamp(16px,2vw,19px); color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 36px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.stat-number span { color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ── PROBLEM ── */
#problem { padding: 96px 0; background: var(--white); }
.problem-header { text-align: center; margin-bottom: 64px; }
.problem-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

.problem-card {
  background: var(--white); border: 1px solid var(--gray-mid); border-radius: 16px;
  padding: 36px; display: flex; gap: 20px; align-items: flex-start; transition: var(--transition);
}

.problem-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.problem-icon { width: 56px; height: 56px; border-radius: 14px; background: #FFF9EE; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.problem-icon svg { width: 28px; height: 28px; }

.problem-card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.problem-card-text { font-size: 14px; color: var(--gray-dark); line-height: 1.6; }

/* ── SOLUTION ── */
#solution { padding: 96px 0; background: var(--gray-bg); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.solution-checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.solution-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--gray-dark); line-height: 1.5; }

.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-icon svg { width: 12px; height: 12px; }

.solution-card-main { background: var(--navy); border-radius: 20px; padding: 48px; position: relative; overflow: hidden; }
.solution-card-main::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); }

.solution-big-number { font-size: 80px; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -0.04em; position: relative; z-index: 1; }
.solution-big-label { font-size: 20px; font-weight: 600; color: var(--white); margin-top: 8px; position: relative; z-index: 1; }
.solution-big-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; position: relative; z-index: 1; }

.solution-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; position: relative; z-index: 1; }
.solution-mini-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; }
.solution-mini-number { font-size: 24px; font-weight: 800; color: var(--white); }
.solution-mini-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── BENEFITS ── */
#benefits { padding: 96px 0; background: var(--navy); }
.benefits-header { text-align: center; margin-bottom: 64px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefits-row-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 20px; }

.benefit-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px 28px; transition: var(--transition); }
.benefit-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }

.benefit-icon-wrap { width: 60px; height: 60px; border-radius: 16px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.benefit-card:hover .benefit-icon-wrap { background: rgba(201,168,76,0.2); }
.benefit-icon-wrap svg { width: 30px; height: 30px; }

.benefit-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.benefit-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── SERVICES ── */
#services { padding: 96px 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.service-card { border: 1px solid var(--gray-mid); border-radius: 20px; padding: 36px 28px; display: flex; flex-direction: column; 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(--gold), var(--navy)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--gold-glow); }
.service-icon svg { width: 32px; height: 32px; }

.service-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.service-desc { font-size: 14px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 20px; flex: 1; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-dark); }
.service-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.service-card .btn { font-size: 13px; padding: 10px 20px; }

/* ── GALLERY ── */
#gallery { padding: 96px 0; background: var(--gray-bg); }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.gallery-item { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-before, .gallery-after { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: var(--transition); }
.gallery-before { background: linear-gradient(135deg, #8B9BAD 0%, #CBD5E0 100%); left: 0; right: 50%; }
.gallery-after { background: linear-gradient(135deg, #0B1D3A 0%, #1a3560 100%); left: 50%; right: 0; }
.gallery-item:hover .gallery-before { right: 30%; }
.gallery-item:hover .gallery-after { left: 30%; }

.gallery-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.3); padding: 4px 12px; border-radius: 100px; margin-bottom: 8px; }
.gallery-service { font-size: 14px; font-weight: 600; color: var(--white); text-align: center; padding: 0 12px; }
.gallery-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); z-index: 10; }
.gallery-divider::after { content: '↔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 14px; font-weight: 900; }

/* ── TESTIMONIALS ── */
#testimonials { padding: 96px 0; background: var(--navy); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px 28px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: var(--gold); font-size: 18px; }

.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── CTA ── */
#cta { padding: 96px 0; background: linear-gradient(135deg, var(--navy) 0%, #122347 50%, #1a3560 100%); position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); }

.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(28px,4vw,48px); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-title span { color: var(--gold); }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 40px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-urgency { font-size: 13px; color: rgba(255,255,255,0.4); }
.cta-urgency strong { color: rgba(255,255,255,0.7); }

/* ── CONTACT ── */
#contact { padding: 96px 0; background: var(--white); }
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }

.contact-info-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.02em; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.contact-item:hover .contact-item-icon { background: var(--gold-glow); }
.contact-item-icon svg { width: 20px; height: 20px; }

.contact-item-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-text); margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--navy); }

.contact-map-placeholder { background: var(--gray-bg); border-radius: 16px; height: 200px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-mid); position: relative; overflow: hidden; }

.contact-form { background: var(--white); border: 1px solid var(--gray-mid); border-radius: 20px; padding: 44px; box-shadow: var(--shadow-md); }

.form-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }

.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font); font-size: 15px; color: var(--text-main);
  background: var(--gray-bg); border: 1.5px solid var(--gray-mid);
  border-radius: 10px; padding: 12px 16px; transition: var(--transition);
  outline: none; width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #E53E3E; }
.form-group .error-msg { font-size: 12px; color: #E53E3E; display: none; }
.form-group.has-error .error-msg { display: block; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.form-success { display: none; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 12px; padding: 20px; text-align: center; font-size: 15px; font-weight: 600; color: var(--navy); }

/* ── WHATSAPP ── */
#whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 9999; text-decoration: none; }
.whatsapp-btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(37,211,102,0.5); transition: var(--transition); position: relative; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.whatsapp-pulse { position: absolute; inset: -8px; border-radius: 50%; background: rgba(37,211,102,0.3); animation: waPulse 2s ease-in-out infinite; }
@keyframes waPulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.3); opacity:0; } }
.whatsapp-tooltip { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: var(--navy); color: var(--white); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); box-shadow: var(--shadow-md); }
.whatsapp-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--navy); }
#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── FOOTER ── */
footer { background: #060E1E; padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-logo img { height: 60px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.2)); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--gold-glow); border-color: rgba(201,168,76,0.3); }
.social-btn svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-row-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .sofa-scene-wrap { padding-bottom: 60px; }
  .sofa-scene { width: 360px; height: 190px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sofa-scene { width: 280px; height: 150px; }
}
