/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #258e55; border-radius: 3px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 88px;
  display: flex;
  align-items: center;
}
.navbar-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: none; align-items: center; }
@media (min-width: 1280px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  padding: 4px 11px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.13px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover { color: rgba(255,255,255,0.9); }
.nav-right { display: none; align-items: center; gap: 16px; flex-shrink: 0; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.nav-tel svg, .nav-wa svg { display: block; }
.btn-cotizar {
  display: inline-flex;
  align-items: center;
  background: #258e55;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.28px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-cotizar:hover { background: #1c7343; }
.nav-mobile-btn { display: flex; color: white; padding: 4px; }
@media (min-width: 1280px) { .nav-mobile-btn { display: none; } }
.nav-mobile-menu {
  display: none;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: 88px; left: 0; right: 0;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  text-align: left;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: all 0.2s;
  display: block;
}

/* ============================================================
   PAGE WRAP
   ============================================================ */
.page-wrap { padding-top: 88px; }

/* ============================================================
   PAGE HEADER (dark, no sup label)
   ============================================================ */
.page-header {
  background: #1a1a1a;
  padding: 80px 0 96px;
}
.page-header-h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 300;
  color: #f7f7f7;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-header-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(247,247,247,0.6);
  line-height: 1.75;
  max-width: 520px;
}

/* ============================================================
   FORM SECTION (light)
   ============================================================ */
.form-section {
  background: #f7f7f7;
  padding: 56px 0 80px;
}

.form-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .form-layout { flex-direction: column; }
  .contact-sidebar { width: 100%; }
}

/* ============================================================
   FORM COLUMN
   ============================================================ */
.form-col { flex: 1; min-width: 0; }

.form-title-border {
  border-left: 3px solid #258e55;
  padding-left: 19px;
  margin-bottom: 28px;
}
.form-title {
  font-size: 24px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Form */
.cotizar-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row--2col { grid-template-columns: 1fr; }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.78px;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 15px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input::placeholder { color: rgba(26,26,26,0.4); }
.field-input:focus {
  border-color: #258e55;
  box-shadow: 0 0 0 3px rgba(37,142,85,0.1);
}

.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.field-date {
  cursor: pointer;
}
.field-date::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #258e55;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
  padding: 18px 24px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #1c7343; }
.btn-submit:disabled { opacity: 0.7; cursor: default; }
.btn-submit img { flex-shrink: 0; }

/* Privacy note */
.form-privacy {
  font-size: 12px;
  font-weight: 300;
  color: #bbb;
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   CONTACT SIDEBAR
   ============================================================ */
.contact-sidebar { width: 360px; flex-shrink: 0; }

.contact-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-title-border {
  border-left: 3px solid #258e55;
  padding-left: 16px;
}
.contact-title {
  font-size: 17.6px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Contact rows */
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-circle img { display: block; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.contact-phone {
  font-size: 17.6px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
}

.contact-hours {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 300;
  color: #999;
}
.contact-hours img { flex-shrink: 0; }

.contact-wa-label {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  line-height: 1.5;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8e8e8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  transition: background 0.2s;
  width: fit-content;
}
.contact-wa-btn:hover { background: #d8d8d8; }
.contact-wa-btn img { flex-shrink: 0; }

.contact-addr-label {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  line-height: 1.5;
}

.contact-addr {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  font-style: normal;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-group-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.footer-link {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.footer-contact-row svg { flex-shrink: 0; }
.footer-address {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 4px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 12px; }
.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.15); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 24px;
  z-index: 50;
  background: #25d366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { display: block; }
