/* ============================================================
   DELTA PLAST — Global Styles
   Colors: Green #4a7c3f / Dark #1a1a1a / Light bg #f9f9f9
   Font: Montserrat (headings) + Open Sans (body)
============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --green:       #4a7c3f;
  --green-light: #6aab5e;
  --green-pale:  #d8ead4;
  --dark:        #1a1a1a;
  --grey:        #555;
  --border:      #e0e0e0;
  --bg-light:    #f9f9f9;
  --shadow:      0 4px 18px rgba(0,0,0,.1);
  --radius:      6px;
  --transition:  .3s ease;
}

/* ── Utilities ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 60px 0; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ════════════════════════════
   HEADER
════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.12); }

.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: auto;
    margin-bottom: 10px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo-leaf { font-size: 1.5rem; }

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: -.3px;
  width: 80%;
}

.logo-text strong { color: var(--green); font-weight: 800; }

/* Nav */
.header__nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  padding: 6px 12px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link:hover { color: var(--green); background: var(--green-pale); }
.nav__link .fa-chevron-down { font-size: .6rem; }

/* Dropdown */
.nav__has-drop { position: relative; }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  z-index: 100;
  padding: 6px 0;
  top: 35px;
}

.nav__has-drop:hover .nav__dropdown { display: block; }

.nav__dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: .82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--grey);
}

.nav__dropdown li a:hover { color: var(--green); background: var(--green-pale); }

/* Header social */
.header__social {
  display: flex;
  gap: 10px;
  margin-left: 12px;
}

.header__social a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--grey);
  transition: var(--transition);
}

.header__social a:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.header__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════
   HERO SLIDER
════════════════════════════ */
.hero-slider {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  background: #2a2a1a;
}

.slider__track {
  display: flex;
  transition: transform .6s ease;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  font-size: .9rem;
  color: var(--dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  transition: var(--transition);
  z-index: 10;
}

.slider__btn:hover { background: #fff; }
.slider__btn--prev { left: 16px; }
.slider__btn--next { right: 16px; }

.slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider__dot.active { background: #fff; }

/* ════════════════════════════
   REFERENCIAS PRINCIPALES
════════════════════════════ */
.referencias { background: #fff; }

.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ref-card {
  text-align: center;
  cursor: pointer;
}

.ref-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f2f4ef;
  padding: 8px;
}

/* Decorative leaf watermark */
.ref-leaf {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50% 0 50% 50%;
  opacity: .5;
  pointer-events: none;
}

.ref-card__img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .4s ease;
  position: relative;
  z-index: 1;
}

.ref-card:hover .ref-card__img-wrap img { transform: scale(1.05); }

.ref-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 10px;
  text-align: center;
}

/* ════════════════════════════
   PRODUCTOS FABRICADOS
════════════════════════════ */
.fabricados { background: var(--bg-light); }

.fab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fab-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.fab-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .4s ease;
}

.fab-card:hover img { transform: scale(1.06); }

.fab-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 8px;
}

/* ════════════════════════════
   NOSOTROS
════════════════════════════ */
.nosotros { background: #fff; }

.nosotros__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.nosotros__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.nosotros__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.nosotros__text {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 14px;
}

.nosotros__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  margin-top: 10px;
  transition: var(--transition);
}

.nosotros__more:hover {
  background: var(--green-light);
  transform: scale(1.1);
}

.nosotros__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nosotros__images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ════════════════════════════
   FACTORY GALLERY (STRIP)
════════════════════════════ */
.factory-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
}

.factory-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
  transition: filter .4s, transform .4s;
}

.factory-gallery img:hover {
  filter: brightness(1);
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}

/* ════════════════════════════
   VENTAJAS AMBIENTALES
════════════════════════════ */
.ventajas { background: #fff; }

.ventajas__intro {
  text-align: center;
  font-size: .9rem;
  color: var(--grey);
  max-width: 720px;
  margin: -16px auto 44px;
  line-height: 1.7;
}

.ventajas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ventaja__card {
  text-align: center;
  padding: 8px;
}

.ventaja__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.ventaja__img-icon {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--green-pale);
}

.ventaja__title {
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.ventaja__desc {
  font-size: .83rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ventaja__thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ventaja__thumb {
  width: 60px; height: 48px;
  object-fit: cover;
  border-radius: 4px;
  opacity: .75;
  transition: opacity .3s;
}

.ventaja__thumb:hover { opacity: 1; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: #1c1c1c;
  color: rgba(255,255,255,.8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1.4fr;
  gap: 40px;
  padding: 52px 0 44px;
}

/* Footer brand */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.footer-leaf { font-size: 1.3rem; }

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

.footer__brand p {
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(106,171,94,.1);
}

/* Footer columns */
.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }

.footer__col ul li a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.footer__col ul li a:hover { color: var(--green-light); }

/* Footer contact list */
.footer__contact-list { display: flex; flex-direction: column; gap: 12px; }

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.footer__contact-list li i {
  color: var(--green-light);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Footer map */
.footer__map-placeholder {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-size: .82rem;
}

.footer__map-placeholder i {
  font-size: 2rem;
  color: var(--green-light);
  margin-bottom: 8px;
  display: block;
}

.footer__map-placeholder p {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.footer__map-addr {
  font-size: .75rem !important;
  color: rgba(255,255,255,.4) !important;
  margin-top: 3px;
}

.footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--green-light);
  border: 1px solid rgba(106,171,94,.4);
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
}

.footer__map-link:hover {
  background: rgba(106,171,94,.12);
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* ════════════════════════════
   COOKIE BAR
════════════════════════════ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .4s ease;
}

.cookie-bar.hidden { transform: translateY(100%); }

.cookie-bar p {
  font-size: .78rem;
  color: var(--grey);
  max-width: 700px;
  text-align: center;
  line-height: 1.5;
}

.cookie-bar p a { color: var(--green); text-decoration: underline; }

.cookie-bar__btn {
  padding: 8px 28px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .08em;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-bar__btn:hover { background: var(--green-light); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .refs-grid  { grid-template-columns: repeat(2, 1fr); }
  .fab-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .factory-gallery { grid-template-columns: repeat(3, 1fr); }
  .factory-gallery img:nth-child(n+4) { display: none; }
}

@media (max-width: 768px) {
  .header__nav { 
    position: fixed; top: 64px; left: 0; right: 0;
    background: #fff; padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    transform: translateY(-120%); opacity: 0;
    transition: var(--transition); pointer-events: none;
    z-index: 999;
  }
  .header__nav.open {
    transform: translateY(0); opacity: 1; pointer-events: all;
  }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .header__social { display: none; }
  .header__burger { display: flex; margin-left: auto; }

  .header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .header__burger.active span:nth-child(2) { opacity: 0; }
  .header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .slide img { height: 280px; }
  .nosotros__inner { grid-template-columns: 1fr; gap: 32px; }
  .ventajas__grid { grid-template-columns: 1fr; gap: 28px; }
  .factory-gallery { grid-template-columns: repeat(2, 1fr); }
  .factory-gallery img:nth-child(n+3) { display: block; }
  .factory-gallery img:nth-child(n+5) { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px; }
  .cookie-bar { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
  .refs-grid { grid-template-columns: 1fr 1fr; }
  .fab-grid  { grid-template-columns: 1fr 1fr; }
  .nosotros__images { grid-template-columns: 1fr; }
  .factory-gallery { grid-template-columns: 1fr 1fr; }
  .section { padding: 44px 0; }
}


/* ============================================================
   NOSOTROS PAGE
============================================================ */

/* ── Nav active link ── */
.nav__link--active {
  color: var(--green) !important;
  font-weight: 700;
}

/* ── Page Banner ── */
.page-banner {
  background: #1e3a2f;
  padding: 52px 0 44px;
  margin-top: 90px;
}

.page-banner__url {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}

.page-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

/* ── About Body ── */
.about-body {
  padding: 72px 0 80px;
  background: #fff;
}

.about-body__inner {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 64px;
  align-items: flex-start;
}

.about-body__visual { position: relative; }

.about-body__img {
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
}

.about-body__play {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(74,124,63,.4);
}

.about-body__play:hover {
  background: var(--green-light);
  transform: scale(1.1);
}

.about-block { margin-bottom: 32px; }
.about-block:last-child { margin-bottom: 0; }

.about-block__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-block__text {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.78;
}

/* ── Footer map embed ── */
.footer__map-embed {
  display: flex;
  flex-direction: column;
}

/* ── Responsive – Nosotros ── */
@media (max-width: 900px) {
  .about-body__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-body__visual { max-width: 540px; }
}

@media (max-width: 480px) {
  .page-banner { padding: 40px 0 32px; }
  .about-body  { padding: 48px 0 56px; }
}


/* ============================================================
   CONTACTO PAGE
============================================================ */

/* ── Full-width map ── */
.contact-map-full {
  margin-top: 64px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: block;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Contact info strip ── */
.contact-info-strip {
  padding: 52px 0 44px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.contact-info-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.cinfo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cinfo-block__icon {
  position: relative;
  width: 72px;
  height: 72px;
}

.cinfo-block__icon svg,
.cinfo-block__icon i {
  width: 100%;
  height: 100%;
  stroke: #333;
  fill: none;
  stroke-width: 1.5;
}

/* SVG icon wrapper */
.cinfo-icon-svg {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinfo-icon-svg img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: .85;
}

/* Green checkmark badge on icon */
.cinfo-block__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .6rem;
}

.cinfo-block__badge i {
  font-size: 10px;
}

.fa-check{
  font-size: 10px !important;
}

.cinfo-block__label {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}

.cinfo-block__value {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.7;
}

.cinfo-block__value a {
  color: var(--grey);
  transition: var(--transition);
}

.cinfo-block__value a:hover { color: var(--green); }

/* ── Contact form section ── */
.contact-form-section {
  padding: 56px 0 72px;
  background: #fff;
}

.contact-form {
  max-width: 790px;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-form__label .req {
  color: var(--green);
  margin-left: 2px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,63,.1);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aaa;
  font-size: .85rem;
}

.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* reCAPTCHA mock */
.contact-form__captcha {
  margin-bottom: 20px;
}

.captcha-mock {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 14px 20px;
  background: #f9f9f9;
  min-width: 300px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.captcha-mock__checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #c1c1c1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  background: #fff;
  transition: var(--transition);
}

.captcha-mock__checkbox.checked {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.captcha-mock__text {
  font-size: .85rem;
  color: #333;
}

.captcha-mock__brand {
  margin-left: auto;
  text-align: center;
}

.captcha-mock__brand img {
  width: 32px;
  opacity: .7;
}

.captcha-mock__brand span {
  display: block;
  font-size: .58rem;
  color: #999;
  margin-top: 2px;
}

/* Submit button */
.contact-form__submit-wrap {
  margin-top: 4px;
}
.cinfo-icon-svg i {
  font-size: 62px;
}

.contact-form__submit {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.contact-form__submit:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ── Responsive – Contacto ── */
@media (max-width: 768px) {
  .contact-info-strip__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-map-full { height: 220px; }

  .captcha-mock { min-width: auto; width: 100%; }
}
