/* ------------------------------------------------------------ */
/* CONTACTO — PREMIUM EDITORIAL                                 */
/* ------------------------------------------------------------ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

.co-main {
  font-family: 'Montserrat', sans-serif;
  color: var(--bj-text, #1a1a1a);
  background: #fff;
  line-height: 1.7;
}


/* ============================================ */
/* HERO                                         */
/* ============================================ */

.co-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) contrast(1.2) saturate(0.4) sepia(0.35);
  z-index: 1;
}

.co-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,22,44,0.6) 0%, rgba(0,22,44,0.45) 50%, rgba(0,22,44,0.65) 100%);
  pointer-events: none;
}

.co-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 680px;
  padding: 0 2rem;
}

.co-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.2rem;
}

.co-hero__h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.co-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto;
}


/* ============================================ */
/* FORM SECTION                                 */
/* ============================================ */

.co-form-section {
  background: #fff;
  padding: 100px 2rem;
}

.co-form-section__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.co-form-section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.5rem;
}

.co-form-section__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bj-navy, #002244);
  margin-bottom: 1.2rem;
}

.co-form-section__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 3rem;
}

.co-form-section__text a {
  color: var(--bj-navy, #002244);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--bj-gold, #c8a84e);
  transition: border-color 0.3s ease;
}

.co-form-section__text a:hover {
  border-color: var(--bj-navy, #002244);
}


/* ============================================ */
/* FORM                                         */
/* ============================================ */

.co-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: left;
}

.co-field {
  display: flex;
  flex-direction: column;
}

.co-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bj-navy, #002244);
  margin-bottom: 0.6rem;
}

.co-field input,
.co-field textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--bj-text, #1a1a1a);
  background: #fafafa;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
}

.co-field input::placeholder,
.co-field textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.co-field input:focus,
.co-field textarea:focus {
  outline: none;
  border-color: var(--bj-navy, #002244);
  background: #fff;
}

/* reCAPTCHA */
.co-captcha {
  display: flex;
  justify-content: center;
}

/* Submit button */
.co-btn {
  display: inline-block;
  padding: 0.8rem 2.8rem;
  border: 1.5px solid var(--bj-navy, #002244);
  background: transparent;
  color: var(--bj-navy, #002244);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: center;
}

.co-btn:hover {
  background: var(--bj-navy, #002244);
  color: #fff;
}


/* ============================================ */
/* MESSAGES                                     */
/* ============================================ */

.co-msg {
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.co-msg--ok {
  background: #f0f8f0;
  color: #1a5e2a;
  border: 1px solid #c3e6cb;
}

.co-msg--error {
  background: #fdf0f0;
  color: #7a1c1c;
  border: 1px solid #f0c6c6;
}


/* ============================================ */
/* RESPONSIVE — TABLET                          */
/* ============================================ */

@media (max-width: 992px) {
  .co-form-section {
    padding: 80px 2rem;
  }

  .co-form-section__title {
    font-size: 2rem;
  }
}


/* ============================================ */
/* RESPONSIVE — MOBILE                          */
/* ============================================ */

@media (max-width: 768px) {
  .co-hero {
    height: 50vh;
  }

  .co-hero__h1 {
    font-size: 2.4rem;
  }

  .co-hero__sub {
    font-size: 1rem;
  }

  .co-form-section {
    padding: 64px 1.5rem;
  }

  .co-form-section__title {
    font-size: 1.8rem;
  }

  .co-btn {
    width: 100%;
    text-align: center;
  }
}


/* ============================================ */
/* RESPONSIVE — SMALL MOBILE                    */
/* ============================================ */

@media (max-width: 480px) {
  .co-hero__h1 {
    font-size: 2rem;
  }

  .co-hero__eyebrow {
    font-size: 0.6rem;
  }

  .co-form-section__title {
    font-size: 1.6rem;
  }
}
