/* =============================================
   REFYCON - Reformas · Construcción · Diseño
   Main Stylesheet
   ============================================= */

/* --- Variables & Reset --- */
:root {
  --blue-primary: #1a73e8;
  --blue-light: #4da6ff;
  --blue-cta: #2563eb;
  --dark-bg: #0d0d0d;
  --dark-nav: #111827;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --light-blue-bg: #eaf2ff;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --footer-bg: #0f172a;
  --accent-line: #2563eb;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue-primary); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a::after {
  content: '▾';
  font-size: 10px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--light-bg); color: var(--blue-primary); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-nav);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-cta:hover { background: #1f2937 !important; color: var(--white) !important; }
.nav-cta .wa-icon { font-size: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO / BANNER
   ============================================= */
#hero {
  margin-top: 64px;
  position: relative;
  min-height: 580px;
  background: var(--dark-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('banner2.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Hero Left - Text */
.hero-text { flex: 1; max-width: 540px; }

.hero-text h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.hero-text h1 .blue { color: var(--blue-light); }

.hero-discount {
  font-size: clamp(80px, 14vw, 130px);
  font-weight: 900;
  color: var(--blue-light);
  line-height: 0.85;
  margin: 8px 0 0;
  letter-spacing: -4px;
  text-shadow: 0 0 40px rgba(77,166,255,0.4);
  font-style: italic;
}

.hero-text h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
}

.hero-desc {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 440px;
}
.hero-desc .blue { color: var(--blue-light); font-weight: 600; }

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
}
.hero-badge .badge-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hero-badge span:last-child { line-height: 1.3; }

/* Hero Right - Form */
.hero-form-wrapper {
  flex-shrink: 0;
  width: 360px;
}

.hero-form-box {
  background: rgba(10,10,20,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.hero-form-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}
.hero-form-box h3 .blue { color: var(--blue-light); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.form-field {
  margin-top: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  color: var(--white);
  padding: 10px 12px;
  font-size: 13px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
}
.form-field select { background-color: rgba(10,10,20,0.95); cursor: pointer; }
.form-field select option { background: #1a1a2e; color: var(--white); }
.form-field textarea { resize: none; height: 72px; }

.form-row .form-field { margin-top: 0; }

.upload-box {
  margin-top: 10px;
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: 5px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.upload-box:hover { border-color: var(--blue-light); }
.upload-box .upload-icon { font-size: 22px; color: rgba(255,255,255,0.5); }
.upload-box p { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; line-height: 1.4; }
.upload-box p span { color: var(--blue-light); cursor: pointer; }
.upload-box input[type="file"] { display: none; }

.btn-submit {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  background: var(--blue-cta);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--transition), transform 0.1s;
}
.btn-submit:hover { background: #1d4ed8; }
.btn-submit:active { transform: scale(0.99); }

/* --- Formspree minimal form styles (dark theme) --- */
.form-minimal {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group-minimal {
  margin-top: 10px;
}

.form-label-minimal {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input-minimal,
.form-select-minimal,
.form-textarea-minimal {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  color: var(--white);
  padding: 10px 12px;
  font-size: 13px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  font-family: inherit;
}

.form-select-minimal {
  background-color: rgba(10,10,20,0.95);
  cursor: pointer;
}

.form-select-minimal option {
  background: #1a1a2e;
  color: var(--white);
}

.form-textarea-minimal {
  resize: vertical;
  min-height: 72px;
}

.form-input-minimal::placeholder,
.form-textarea-minimal::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-input-minimal:focus,
.form-select-minimal:focus,
.form-textarea-minimal:focus {
  outline: none;
  border-color: var(--blue-light);
}

.form-error-minimal {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  min-height: 16px;
}

.checkbox-group-minimal {
  margin-top: 14px;
}

.checkbox-label-minimal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.checkbox-label-minimal input[type="checkbox"] {
  display: none;
}

.checkbox-custom-minimal {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.checkbox-label-minimal input[type="checkbox"]:checked + .checkbox-custom-minimal {
  background: var(--blue-cta);
  border-color: var(--blue-cta);
}

.checkbox-label-minimal input[type="checkbox"]:checked + .checkbox-custom-minimal::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.checkbox-text-minimal {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.privacy-link-minimal {
  color: var(--blue-light);
  text-decoration: underline;
}

.privacy-link-minimal:hover {
  color: var(--blue-primary);
}

.btn-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-minimal {
  background: var(--blue-cta);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--transition), transform 0.1s;
  padding: 14px;
  width: 100%;
  margin-top: 14px;
}

.btn-primary-minimal:hover {
  background: #1d4ed8;
}

.btn-primary-minimal:active {
  transform: scale(0.99);
}

.btn-loading-minimal {
  display: none;
}

.btn-loading-minimal i {
  font-size: 14px;
}

.btn-submit-minimal.loading .btn-text-minimal {
  display: none;
}

.btn-submit-minimal.loading .btn-loading-minimal {
  display: inline;
}

.btn-icon-minimal {
  font-size: 14px;
}

.form-status-minimal {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.form-status-minimal.success {
  color: #22c55e;
}

.form-status-minimal.error {
  color: #ef4444;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.form-privacy .lock { font-size: 14px; color: var(--blue-light); }

/* =============================================
   LOCATION STRIP
   ============================================= */
#locations {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 20px;
  text-align: center;
}
#locations p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.location-pins {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.location-pin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-mid);
}
.location-pin .pin-icon { color: var(--blue-primary); font-size: 14px; }

/* =============================================
   SECTION COMMON
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.section-line {
  width: 48px;
  height: 3px;
  background: var(--accent-line);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =============================================
   SERVICES
   ============================================= */
#services {
  padding: 64px 20px;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  text-align: center;
}
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
}
.service-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.service-icon { font-size: 20px; color: var(--blue-primary); }
.service-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  line-height: 1.3;
}
.service-card p {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

/* =============================================
   PROJECTS
   ============================================= */
#projects {
  padding: 64px 20px;
  background: var(--light-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.project-slides {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}
.project-slide {
  flex-shrink: 0;
  width: calc(50% - 6px);
  position: relative;
}
.project-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.slide-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.slider-btn:hover { background: var(--white); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }

.projects-cta {
  text-align: center;
  margin-top: 36px;
}
.btn-outline {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid var(--blue-cta);
  color: var(--blue-cta);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--blue-cta);
  color: var(--white);
}

/* =============================================
   PROMO INFO STRIP
   ============================================= */
#promo-info {
  background: var(--light-blue-bg);
  padding: 40px 20px;
}
.promo-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.promo-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.promo-info-icon {
  font-size: 32px;
  color: var(--blue-primary);
  flex-shrink: 0;
}
.promo-info-text h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.promo-info-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.promo-info-text p strong { color: var(--text-dark); font-weight: 700; }
.promo-info-text p .blue { color: var(--blue-primary); font-weight: 700; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand .logo-text { color: var(--white); font-size: 24px; font-weight: 800; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(77,166,255,0.1);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item .contact-icon { font-size: 15px; margin-top: 2px; color: var(--blue-light); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--blue-light); }
.footer-website { color: var(--blue-light) !important; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--white);
  z-index: 998;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}
.mobile-nav a:hover { color: var(--blue-primary); }
.mobile-nav .mobile-cta {
  margin-top: 24px;
  background: var(--dark-nav);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  border-bottom: none;
}

/* Mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 10px 0 14px;
}
.mobile-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-mid);
  font-weight: 500;
  text-decoration: none;
}
.mobile-bar-item .mbi { font-size: 22px; }
.mobile-bar-item:hover { color: var(--blue-primary); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-form-wrapper { display: none; }
  .hero-text { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  #hero { min-height: auto; }
  .hero-content { padding: 40px 20px; }
  .hero-text h1 { font-size: 26px; }
  .hero-discount { font-size: 90px; letter-spacing: -2px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .promo-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-bar { display: block; }
  body { padding-bottom: 70px; }
  .whatsapp-float { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .location-pins { gap: 16px; }
  .hero-badges { gap: 16px; }
  .hero-badge span:last-child { font-size: 11px; }
}