/* ═══════════════════════════════════════
   contactanos.css · Roch's
   ═══════════════════════════════════════ */

:root {
  --navy:  #07072B;
  --navy2: #183672;
  --teal:  #09AA93;
  --teal2: #0F6C80;
  --ice:   #A8D7E8;
  --bg:    #F6F8FB;
  --white: #ffffff;
  --ink:   #0E1720;
  --muted: rgba(14,23,32,.58);
  --card-shadow: 0 14px 32px rgba(0,0,0,.09);
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Arial', sans-serif; background: var(--bg); color: var(--ink); }

/* ── NAV ── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1%;
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo img { height: 50px; width: auto; margin-left: 60%; }
nav ul { list-style: none; display: flex; margin: 0; padding: 0; }
nav ul li { margin: 0 15px; }
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 7px 2px;
  border-radius: 5px;
  transition: background-color .3s, color .3s;
}
nav ul li a:hover { background-color: #66B2FF; color: #003366; }
.nav-active { border-bottom: 2px solid var(--teal); }
.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  position: absolute;
  top: 15px; right: 20px;
  z-index: 1100;
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #13508b;
    position: absolute;
    top: 60px; left: 0;
    width: 100%;
    padding: 10px 0;
  }
  nav ul.active { display: flex; }
  nav ul li { margin: 10px 0; }
}

/* ── HERO ── */
.ct-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--teal2) 100%);
  padding: 80px 24px 100px;
  overflow: hidden;
}

.ct-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(9,170,147,.18) 0%, transparent 65%);
  pointer-events: none;
}

.ct-hero__content {
  position: relative;
  max-width: 680px;
  margin: 0 auto 0 8%;
  text-align: left;
}

.ct-hero__tag {
  display: inline-block;
  background: rgba(9,170,147,.2);
  border: 1px solid rgba(9,170,147,.4);
  color: var(--ice);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ct-hero__title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  color: #F2F7FF;
  margin-bottom: 14px;
}

.ct-hero__accent { color: var(--ice); }

.ct-hero__sub {
  font-size: 17px;
  color: rgba(242,247,255,.75);
  max-width: 460px;
}

.ct-hero__wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  line-height: 0;
}
.ct-hero__wave svg { width: 100%; height: 60px; }

@media (max-width: 768px) {
  .ct-hero { padding: 60px 20px 90px; }
  .ct-hero__content { margin: 0; }
  .ct-hero__title { font-size: 34px; }
}

/* ── MAIN LAYOUT ── */
.ct-main {
  background: var(--bg);
  padding: 60px 24px 80px;
}

.ct-main__container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .ct-main__container { grid-template-columns: 1fr; }
}

/* ── FORMULARIO ── */
.ct-form-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 40px 36px;
}

.ct-form-wrap__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ct-form-wrap__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .ct-form__row { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 28px 20px; }
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.ct-field__input {
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
  background: #FAFBFC;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
  width: 100%;
}

.ct-field__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(9,170,147,.12);
  background: #fff;
}

.ct-field__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2309AA93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.ct-field__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.ct-form__btn {
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background .15s, transform .15s;
}

.ct-form__btn:hover {
  background: var(--teal2);
  transform: translateY(-1px);
}

.ct-form__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: -8px;
}

/* Mensaje éxito */
.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.ct-success__icon { font-size: 52px; }
.ct-success__title { font-size: 22px; font-weight: 900; color: var(--navy); }
.ct-success__text { font-size: 14px; color: var(--muted); max-width: 340px; line-height: 1.6; }

/* ── INFO LATERAL ── */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* WhatsApp CTA */
.ct-info__wsp {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #25D366, #1da851);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
  transition: transform .18s, box-shadow .18s;
}

.ct-info__wsp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,.32);
}

.ct-info__wsp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.ct-info__wsp-label {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

.ct-info__wsp-cta {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

/* Cards info */
.ct-info__card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 24px 22px;
}

.ct-info__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ct-info__card-icon { font-size: 22px; }

.ct-info__card-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
}

/* Horarios */
.ct-info__hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.ct-info__hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.ct-info__hours li:last-child { border-bottom: none; padding-bottom: 0; }

.ct-info__day { color: var(--ink); font-weight: 600; }
.ct-info__time {
  color: var(--teal2);
  font-weight: 700;
  background: rgba(9,170,147,.08);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.ct-info__time--closed {
  color: #e07040;
  background: rgba(224,112,64,.08);
}

.ct-info__note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Datos contacto */
.ct-info__data {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-info__data li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ct-info__data-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.ct-info__data-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color .15s;
}

.ct-info__data-val:hover { color: var(--teal); }

/* ── FOOTER ── */
#footer {
  background-color: var(--navy);
  color: #f1f1f1;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container { max-width: 1140px; margin: 0 auto; padding: 0 15px; text-align: center; }
#footer h2 { font-size: 25px; margin-bottom: 25px; color: #fff; margin-top: -1%; }
.social-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }
.social-links a img { width: 45px; height: 45px; transition: transform .3s; }
.social-links a img:hover { transform: scale(1.15); }
.footer-copy { font-size: 14px; color: #fff; margin-top: 20px; margin-bottom: -1%; }

@media (max-width: 600px) {
  #footer { padding: 30px 15px; }
  #footer h2 { font-size: 20px; }
  .social-links { gap: 15px; margin-bottom: 5%; }
  .social-links a img { width: 40px; height: 40px; }
  .footer-copy { font-size: 12px; margin-bottom: 10%; }
}

section header { background: transparent; }