/* =========================================================
   COPRIVIN — Overrides PRO (Topbar + Header + Menú móvil)
   Archivo: assets/css/coprivin_colors.css
   ========================================================= */

:root{
  --cop-bg: #000000;
  --cop-top: #2f2f2f;
  --cop-panel: #0b0b0b;
  --cop-white: #ffffff;
  --cop-muted: rgba(255,255,255,0.75);

  /* Dorado (elige uno y úsalo en todo) */
  --cop-gold: #d4af37;
  --cop-gold-2: #f1d270;

  --cop-line: rgba(255,255,255,0.10);
  --cop-line-gold: rgba(212,175,55,0.28);

  --cop-radius: 12px;
}

/* =========================
   TOPBAR (gris oscuro)
   ========================= */
.coprivin-topbar{
  background: var(--cop-top) !important;
  border-bottom: 1px solid var(--cop-line);
  padding: 10px 0 !important;
}

.coprivin-topbar,
.coprivin-topbar a,
.coprivin-topbar span{
  color: var(--cop-white) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.coprivin-topbar i{
  color: var(--cop-gold) !important;
  font-size: 14px;
}

.coprivin-topbar__left{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.coprivin-topbar__right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:22px;
}

.coprivin-topbar__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.coprivin-topbar a:hover{
  color: var(--cop-gold-2) !important;
}

/* =========================
   HEADER inferior (negro)
   ========================= */
.header-bottom-area{
  background: var(--cop-bg) !important;
  border-bottom: 1px solid var(--cop-line-gold);
}

/* Logo desktop */
.header-bottom-area .logo img{
  max-height: 54px;
  width: auto;
}

/* Menú desktop */
.main-menu > ul > li > a{
  color: var(--cop-white) !important;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Hover pro: color + subrayado dorado */
.main-menu > ul > li > a{
  position: relative;
}
.main-menu > ul > li > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background: var(--cop-gold);
  transition: width .18s ease;
}
.main-menu > ul > li:hover > a,
.main-menu > ul > li > a:hover{
  color: var(--cop-gold-2) !important;
}
.main-menu > ul > li:hover > a::after,
.main-menu > ul > li > a:hover::after{
  width:100%;
}

/* =========================
   HEADER mobile (logo + hamburguesa)
   ========================= */
@media (max-width: 991px){
  .header-bottom-area{
    padding: 10px 0 !important;
  }

  .header-bottom-area .logo img{
    max-height: 44px !important;
  }

  .header-bottom-area .clickable-menu{
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    padding-right: 6px;
  }

  .header-bottom-area .clickable-menu a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:46px;
    height:46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .header-bottom-area .clickable-menu a i{
    font-size: 26px !important;
    color: var(--cop-gold) !important;
    line-height: 1;
  }
}

/* =========================
   MENÚ MÓVIL (panel)
   ========================= */
.clickable-mainmenu{
  background: var(--cop-panel) !important;
  color: var(--cop-white) !important;
  border-right: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.80);
  z-index: 9999 !important;
}

/* Botón cerrar (X) */
.clickable-mainmenu-icon{
  display:flex;
  justify-content:flex-end;
  padding: 12px 16px;
}
.clickable-mainmenu-close{
  width:44px;
  height:44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  cursor:pointer;
}
.clickable-mainmenu-close .zmdi{
  color: var(--cop-gold) !important;
  font-size: 26px;
  line-height: 44px;
  display:block;
  text-align:center;
}

/* Logo dentro del panel */
.coprivin-mobile-brand{
  padding: 18px 20px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 16px;
}
.coprivin-mobile-brand__logo{
  width: 180px !important;
  max-width:none !important;
  height:auto !important;
  display:block;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.75));
}

/* Links del menú */
#menu.clickable-menu-style ul{
  padding: 8px 14px 18px !important;
}
#menu.clickable-menu-style ul li{
  margin-bottom: 8px;
}
#menu.clickable-menu-style ul li a{
  color: var(--cop-white) !important;
  font-size: 18px !important;
  font-weight: 600;
  padding: 16px 16px !important;
  border-radius: 14px;
  border: 1px solid transparent;
}

/* Hover/activo dorado */
#menu.clickable-menu-style ul li a:hover,
#menu.clickable-menu-style ul li a:focus{
  background: rgba(212,175,55,0.12) !important;
  border-color: rgba(212,175,55,0.45) !important;
  color: var(--cop-gold-2) !important;
}

/* =========================
   OVERLAY (click afuera para cerrar)
   ========================= */
.coprivin-menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}
body.coprivin-mm-open .coprivin-menu-overlay{
  opacity: 1;
  pointer-events: auto;
}
/* =========================
   MENÚ MÓVIL — AJUSTE PRO (SIN BOTÓN CERRAR)
   ========================= */

/* Quita espacio arriba (muchos templates meten padding) */
.clickable-mainmenu{
  padding-top: 0 !important;
}

/* Si quedó algún contenedor del close, lo ocultamos */
.clickable-mainmenu-icon,
.clickable-mainmenu-close{
  display:none !important;
}

/* Logo más arriba y sin “aire” extra */
.coprivin-mobile-brand{
  padding: 10px 16px 14px !important; /* menos alto */
  margin-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* Tamaño del logo (ajústalo si quieres) */
.coprivin-mobile-brand__logo{
  width: 170px !important;
  height: auto !important;
}

/* Links: más “premium” (sin bloques gigantes) */
#menu.clickable-menu-style ul{
  padding: 6px 12px 18px !important;
}

#menu.clickable-menu-style ul li{
  margin-bottom: 6px !important;
}

#menu.clickable-menu-style ul li a{
  padding: 14px 14px !important;
  border-radius: 12px !important;
  font-size: 18px !important;
  font-weight: 600;
  background: transparent !important;
  border: 1px solid transparent !important;
}

/* Hover/tap dorado */
#menu.clickable-menu-style ul li a:hover,
#menu.clickable-menu-style ul li a:active,
#menu.clickable-menu-style ul li a:focus{
  background: rgba(212,175,55,0.12) !important;
  border-color: rgba(212,175,55,0.40) !important;
  color: #f1d270 !important;
}

/* Estado activo por si el template lo marca */
#menu.clickable-menu-style ul li.active > a,
#menu.clickable-menu-style ul li > a.active{
  background: rgba(212,175,55,0.16) !important;
  border-color: rgba(212,175,55,0.55) !important;
  color: #f1d270 !important;
}
/* Link Administración – Topbar */
.coprivin-topbar__admin{
  opacity: 0.9;
  font-weight: 500;
}

.coprivin-topbar__admin i{
  font-size: 15px;
}

/* Hover discreto */
.coprivin-topbar__admin:hover{
  color: #f4b400 !important;
}
.section-service h4{
  color:#111;
  font-weight:600;
}

.section-service p{
  color:#555;
  line-height:1.6;
}

.section-service .icons img{
  filter: grayscale(100%);
  opacity: 0.85;
}
/* =====================================================
   SECCIÓN EXPERIENCIA – FONDO NEGRO (COPRIVIN)
   ===================================================== */

/* Fondo negro total */
.section-agency-benefit{
  background: radial-gradient(circle at top left, #2c2c2c 0, #050505 40%, #000000 100%);
}

/* Título principal */
.section-agency-benefit .section-title h2{
  color: #ffffff !important;
}

/* Línea decorativa bajo el título */
.section-agency-benefit .section-title h2::after{
  background-color: #d4af37 !important;
}

/* Párrafos */
.section-agency-benefit p{
  color: rgba(255,255,255,0.85) !important;
}

/* Botón */
.section-agency-benefit .btn,
.section-agency-benefit .contact-btn{
  background-color: #d4af37 !important;
  color: #17130a !important;
  border: none !important;
}

/* Hover botón */
.section-agency-benefit .btn:hover{
  filter: brightness(1.1);
}

/* Caja del video (derecha) */
.section-agency-benefit .agency-thumb .thumb{
  background: #111 !important;
  border-radius: 12px;
  overflow: hidden;
}

/* Botón play */
.section-agency-benefit .play-btn a{
  background: #d4af37 !important;
  color: #17130a !important;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* Ajuste mobile */
@media (max-width: 767px){
  .section-agency-benefit{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* =====================================================
   VIDEO VERTICAL – SECCIÓN EXPERIENCIA (COPRIVIN)
   ===================================================== */

/* Contenedor vertical 9:16 */
.coprivin-video-vertical{
  position: relative;
  width: 100%;
  max-width: 420px;          /* controla ancho en desktop */
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.30);
  box-shadow: 0 25px 60px rgba(0,0,0,0.65);
}

/* Video */
.coprivin-video-vertical video{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* NO se estira */
  display: block;
}

/* Centrar el video en desktop */
.section-agency-benefit .agency-thumb{
  display: flex;
  justify-content: center;
}

/* Ajuste mobile */
@media (max-width: 767px){
  .coprivin-video-vertical{
    max-width: 100%;
    margin-top: 30px;
  }
}
/* =====================================================
   FOOTER COPRIVIN (NEGRO + DORADO)
   ===================================================== */

.coprivin-footer .footer-top{
  background:#000 !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.coprivin-footer .footer-widget .ft-title{
  color:#fff !important;
  letter-spacing: .06em;
  font-weight: 800;
}
.coprivin-footer .footer-widget .ft-title span{
  color:#d4af37 !important;
}

.coprivin-footer .footer-widget p,
.coprivin-footer .footer-widget a,
.coprivin-footer .footer-widget li a{
  color: rgba(255,255,255,0.78) !important;
}

.coprivin-footer .footer-widget a:hover{
  color:#f1d270 !important;
}

.coprivin-footer .ft-address i{
  color:#d4af37 !important;
  margin-right: 8px;
}

.footer-logo{
  max-height: 52px;
  width:auto;
  margin-top: 10px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.7));
}

/* Botones CTA */
.footer-cta{
  display:flex;
  flex-direction: column;
  gap:10px;
  margin-top: 12px;
}
.footer-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 12px 14px;
  border-radius: 14px;
  background:#d4af37;
  color:#17130a !important;
  font-weight: 700;
}
.footer-btn--ghost{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color:#fff !important;
}
.footer-btn:hover{ filter: brightness(1.05); }

/* Admin link */
.footer-admin{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.30);
}
.footer-admin i{ color:#d4af37 !important; }

/* Social */
.coprivin-footer .social-share a{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10);
  color:#fff !important;
}
.coprivin-footer .social-share a i{
  color:#fff !important;
}
.coprivin-footer .social-share a:hover{
  border-color: rgba(212,175,55,0.45);
}
.coprivin-footer .social-share a:hover i{
  color:#d4af37 !important;
}

/* Copyright */
.coprivin-footer .copyright{
  background:#000 !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.coprivin-footer .copyright p{
  color: rgba(255,255,255,0.65) !important;
}

/* Mobile */
@media (max-width: 767px){
  .footer-logo{ max-height: 46px; }
  .footer-cta{ gap:8px; }
}
/* =====================================================
   FOOTER NEWSLETTER – COPRIVIN
   ===================================================== */

.footer-newsletter input{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color:#fff !important;
  border-radius: 14px 0 0 14px;
  padding: 14px 16px;
}

.footer-newsletter input::placeholder{
  color: rgba(255,255,255,0.55);
}

.footer-newsletter button{
  background:#d4af37 !important;
  border:none !important;
  color:#17130a !important;
  border-radius: 0 14px 14px 0;
  padding: 0 18px;
}

.footer-newsletter button i{
  font-size: 18px;
}

.footer-newsletter button:hover{
  filter: brightness(1.05);
}

/* Alertas */
.mailchimp-success{
  color:#6fdc8c;
  margin-top: 10px;
}
.mailchimp-error{
  color:#ff6b6b;
  margin-top: 10px;
}
/* === Servicios COPRIVIN (Home) === */
.coprivin-service-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:all .25s ease;
}

.coprivin-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.coprivin-service-card h4{
  font-weight:700;
  margin-bottom:12px;
}

.coprivin-service-card p{
  font-size:14px;
  line-height:1.6;
  color:#555;
}

.coprivin-service-card .btn-text{
  font-weight:600;
  margin-top:8px;
}
/* =====================================================
   COPRIVIN — SERVICIOS HOME (ELEGANTE / PREMIUM)
   Pegar al final de coprivin_colors.css
   ===================================================== */

.coprivin-services{
  /* Fondo oscuro con look premium */
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(212,175,55,0.12), transparent 55%),
    radial-gradient(700px 380px at 15% 35%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 60%, #050505 100%);
}

/* Título + subtítulo */
.coprivin-services__title h2{
  color:#fff !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.coprivin-services__title p{
  color: rgba(255,255,255,0.78) !important;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Línea decorativa bajo el H2 (usa el estilo del template, pero lo “afina”) */
.coprivin-services__title h2::after{
  background: var(--cop-gold) !important;
}
.coprivin-services__title h2::before{
  background: rgba(212,175,55,0.28) !important;
}

/* Grid: aire entre cards */
.coprivin-services__grid{
  margin-top: 40px;
}

/* Card */
.cop-card{
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0b 0%, #000 60%, #000 100%);
  border: 1px solid rgba(212,175,55,0.55);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}

/* Brillo sutil (premium) */
.cop-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 50% -10%, rgba(212,175,55,0.18), transparent 60%);
  opacity: .9;
  pointer-events:none;
}

.cop-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.65);
  border-color: rgba(241,210,112,0.85);
}

/* Media (imagen) */
.cop-card__media{
  display:block;
  background: #0a0a0a;
  padding: 22px 22px 0;
}

.cop-card__media img{
  width: 100%;
  height: 210px;              /* mantiene uniformidad */
  object-fit: cover;          /* no estira */
  border-radius: 14px;
  display: block;
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.05) contrast(1.05);
}

.cop-card:hover .cop-card__media img{
  transform: scale(1.04);
}

/* Body */
.cop-card__body{
  padding: 22px 28px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cop-card__title{
  color: var(--cop-gold-2);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  margin: 8px 0 14px;
}

.cop-card__text{
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 14.5px;
  max-width: 320px;
  margin: 0 auto 18px;
}

/* Botón premium */
.cop-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.70);
  color: #f7e6a6 !important;

  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;

  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.cop-btn span{
  font-size: 14px;
  transform: translateY(-1px);
}

.cop-btn:hover{
  background: var(--cop-gold);
  border-color: var(--cop-gold);
  color: #17130a !important;  /* negro elegante */
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px){
  .cop-card__media img{ height: 200px; }
}

@media (max-width: 767px){
  .coprivin-services__grid{ margin-top: 26px; }
  .cop-card{ border-radius: 18px; }
  .cop-card__media{ padding: 18px 18px 0; }
  .cop-card__body{ padding: 18px 20px 22px; }
  .cop-card__title{ font-size: 22px; }
}
/* ======================================
   BOTÓN LUXURY – COPRIVIN
   ====================================== */

.cop-btn-lux{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 10px 26px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #bfa233 0%,
    #d4af37 45%,
    #f1d270 100%
  );

  color:#121212 !important;
  font-weight:600;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;

  border:1px solid rgba(212,175,55,.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 10px 24px rgba(0,0,0,.45);

  transition: all .25s ease;
}

/* Hover elegante */
.cop-btn-lux:hover{
  background: linear-gradient(
    135deg,
    #d8be58 0%,
    #f1d270 55%,
    #fff1b8 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 14px 34px rgba(0,0,0,.55);
  transform: translateY(-1px);
}

/* Active (click) */
.cop-btn-lux:active{
  transform: translateY(0);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,.35);
}
/* ======================================
   BOTÓN PROFESIONAL – COPRIVIN (LOW HEIGHT)
   ====================================== */

.cop-btn-pro{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 7px 22px;     /* ⬅️ clave: menos alto */
  border-radius: 5px;   /* más recto aún */

  background: #d4af37;
  color: #121212 !important;

  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  border: 1px solid #d4af37;
  box-shadow: 0 5px 12px rgba(0,0,0,.35);

  transition: background .2s ease,
              box-shadow .2s ease,
              transform .15s ease;
}

/* Hover sobrio */
.cop-btn-pro:hover{
  background: #f1d270;
  border-color: #f1d270;
  box-shadow: 0 7px 18px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

/* Active */
.cop-btn-pro:active{
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,.45);
}


/* ======================================
   BOTÓN PROFESIONAL – COPRIVIN
   ====================================== */

.cop-btn-pro{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 10px 24px;
  border-radius: 6px; /* clave: profesional, no pastilla */

  background: #d4af37;             /* dorado corporativo */
  color: #121212 !important;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  border: 1px solid #d4af37;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);

  transition: all .2s ease;
}

/* Hover sobrio */
.cop-btn-pro:hover{
  background: #f1d270;             /* dorado claro */
  border-color: #f1d270;
  color: #121212 !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

/* Active */
.cop-btn-pro:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,.45);
}
/* ======================================
   BOTÓN PROFESIONAL – COPRIVIN (LOW HEIGHT)
   ====================================== */

.cop-btn-pro{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 4px 22px;     /* ⬅️ clave: menos alto */
  border-radius: 5px;   /* más recto aún */

  background: #d4af37;
  color: #121212 !important;

  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  border: 1px solid #d4af37;
  box-shadow: 0 5px 12px rgba(0,0,0,.35);

  transition: background .2s ease,
              box-shadow .2s ease,
              transform .15s ease;
}

/* Hover sobrio */
.cop-btn-pro:hover{
  background: #f1d270;
  border-color: #f1d270;
  box-shadow: 0 7px 18px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

/* Active */
.cop-btn-pro:active{
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,.45);
}
.cop-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background: linear-gradient(120deg,
    transparent 20%,
    rgba(212,175,55,0.08) 50%,
    transparent 80%);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

.cop-card:hover::after{
  opacity:1;
}
/* =====================================================
   COPRIVIN — ¿POR QUÉ ELEGIRNOS? + COTIZACIÓN
   ===================================================== */

.coprivin-choose{
  background:#ffffff;
}

/* Título */
.coprivin-choose__title h2{
  font-weight: 800;
  color:#111 !important;
  margin-bottom: 10px;
}
.coprivin-choose__title p{
  color:#555 !important;
  line-height: 1.7;
  max-width: 520px;
}

/* Items */
.coprivin-choose__items{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.coprivin-choose__item{
  display: flex;
  gap: 16px;
  padding: 16px 16px;
  border-radius: 12px;
  background: #fbfbfb;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.coprivin-choose__item:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* Icono */
.coprivin-choose__icon{
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.25);
  flex: 0 0 48px;
}
.coprivin-choose__icon i{
  color: #d4af37;
  font-size: 20px;
}

/* Texto item */
.coprivin-choose__content h4{
  margin: 0 0 6px 0;
  font-weight: 800;
  color:#111;
  font-size: 18px;
}
.coprivin-choose__content p{
  margin: 0;
  color:#555;
  line-height: 1.65;
  font-size: 14px;
}

/* Panel cotización */
.coprivin-quote{
  background: #f6f6f6;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.coprivin-quote h3{
  margin: 0 0 8px 0;
  font-weight: 900;
  color:#111;
}
.coprivin-quote__lead{
  margin: 0 0 18px 0;
  color:#555;
  line-height: 1.6;
}

/* Inputs */
.coprivin-quote__form input,
.coprivin-quote__form textarea{
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color:#111;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.coprivin-quote__form textarea{
  resize: vertical;
  min-height: 140px;
}
.coprivin-quote__form input:focus,
.coprivin-quote__form textarea:focus{
  border-color: rgba(212,175,55,0.60);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}

/* Botón (usa tu estilo bajo) */
.cop-btn-pro.cop-btn-pro--full{
  width: 100%;
  justify-content: center;
}

/* Hint abajo */
.coprivin-quote__hint{
  margin-top: 14px;
  font-size: 13px;
  color:#555;
}
.coprivin-quote__hint a{
  color:#d4af37;
  font-weight: 800;
}
.coprivin-quote__hint a:hover{
  color:#f1d270;
}

/* Responsive */
@media (max-width: 991px){
  .coprivin-quote{ margin-top: 26px; }
}
/* =====================================================
   COPRIVIN — ¿POR QUÉ ELEGIRNOS? (DARK PREMIUM)
   ===================================================== */

.coprivin-choose{
    background: radial-gradient(800px 400px at 20% 10%, rgb(0 0 0 / 10%), transparent 55%), radial-gradient(700px 380px at 80% 20%, rgba(255, 255, 255, .05), transparent 60%), linear-gradient(180deg, #3f3f3f 0%, #0b0b0b 100%);
}

/* Título */
.coprivin-choose__title h2{
  color:#ffffff !important;
  font-weight:900;
}
.coprivin-choose__title p{
  color:rgba(255,255,255,.75) !important;
}

/* Items */
.coprivin-choose__item{
  background:#111111;
  border:1px solid rgba(212,175,55,.25);
}
.coprivin-choose__item:hover{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

/* Iconos */
.coprivin-choose__icon{
  background: transparent;
  border:1px solid rgba(212,175,55,.45);
}
.coprivin-choose__icon i{
  color:#d4af37;
}

/* Texto items */
.coprivin-choose__content h4{
  color:#f1d270;
}
.coprivin-choose__content p{
  color:rgba(255,255,255,.75);
}

/* =====================================================
   FORMULARIO — COTIZACIÓN (OSCURO PRO)
   ===================================================== */

.coprivin-quote{
  background:#0f0f0f;
  border:1px solid rgba(212,175,55,.35);
  box-shadow: 0 26px 60px rgba(0,0,0,.75);
}
.coprivin-quote h3{
  color:#ffffff;
}
.coprivin-quote__lead{
  color:rgba(255,255,255,.75);
}

/* Inputs */
.coprivin-quote__form input,
.coprivin-quote__form textarea{
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.15);
  color:#ffffff;
}
.coprivin-quote__form input::placeholder,
.coprivin-quote__form textarea::placeholder{
  color:rgba(255,255,255,.45);
}
.coprivin-quote__form input:focus,
.coprivin-quote__form textarea:focus{
  border-color:#d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.20);
}

/* Hint */
.coprivin-quote__hint{
  color:rgba(255,255,255,.70);
}
.coprivin-quote__hint a{
  color:#d4af37;
}
.coprivin-quote__hint a:hover{
  color:#f1d270;
}
/* =====================================================
   COPRIVIN – SECCIÓN SOBRIA / INSTITUCIONAL
   ===================================================== */

.coprivin-choose.sober{
  background:#0b0b0b;
  padding: 80px 0;
}

/* Títulos */
.coprivin-choose.sober .cop-title{
  color:#ffffff;
  font-weight:800;
  margin-bottom: 12px;
}

.coprivin-choose.sober .cop-lead{
  color:rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Items */
.coprivin-choose.sober .cop-item{
  display:flex;
  gap:16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.coprivin-choose.sober .cop-item:last-child{
  border-bottom:none;
}

/* Icon placeholder (muy sobrio) */
.coprivin-choose.sober .cop-icon{
  width:20px;
  height:20px;
  margin-top:4px;
  border:1px solid rgba(212,175,55,.6);
  flex-shrink:0;
}

/* Texto items */
.coprivin-choose.sober h4{
  color:#d4af37;
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.coprivin-choose.sober p{
  color:rgba(255,255,255,.70);
  font-size:14px;
  line-height:1.6;
}
/* =====================================================
   COPRIVIN – SECCIÓN SOBRIA / INSTITUCIONAL
   ===================================================== */

.coprivin-choose.sober{
  background:#0b0b0b;
  padding:80px 0;
}

/* TITULOS */
.coprivin-choose.sober .cop-title{
  color:#ffffff;
  font-weight:800;
  margin-bottom:12px;
}

.coprivin-choose.sober .cop-lead{
  color:rgba(255,255,255,.75);
  max-width:520px;
  margin-bottom:36px;
  line-height:1.7;
}

/* ITEMS */
.coprivin-choose.sober .cop-item{
  display:flex;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.coprivin-choose.sober .cop-item:last-child{
  border-bottom:none;
}

/* ICONO MINIMAL */
.coprivin-choose.sober .cop-icon{
  width:18px;
  height:18px;
  margin-top:5px;
  border:1px solid rgba(212,175,55,.6);
  flex-shrink:0;
}

/* TEXTO */
.coprivin-choose.sober h4{
  color:#d4af37;
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.coprivin-choose.sober p{
  color:rgba(255,255,255,.70);
  font-size:14px;
  line-height:1.6;
}

/* =====================================================
   FORMULARIO SOBRIO
   ===================================================== */

.coprivin-form{
  background:#0f0f0f;
  border:1px solid rgba(255,255,255,.12);
  padding:30px 28px;
}

.coprivin-form h3{
  color:#ffffff;
  font-weight:800;
  margin-bottom:8px;
}

.coprivin-form .form-lead{
  color:rgba(255,255,255,.70);
  margin-bottom:20px;
  line-height:1.6;
}

/* INPUTS */
.coprivin-form input,
.coprivin-form textarea{
  width:100%;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.15);
  color:#ffffff;
  padding:12px 14px;
  margin-bottom:14px;
  font-size:14px;
}

.coprivin-form textarea{
  min-height:130px;
  resize:vertical;
}

.coprivin-form input::placeholder,
.coprivin-form textarea::placeholder{
  color:rgba(255,255,255,.45);
}

.coprivin-form input:focus,
.coprivin-form textarea:focus{
  border-color:#d4af37;
  outline:none;
}

/* NOTA */
.coprivin-form .form-note{
  margin-top:14px;
  font-size:13px;
  color:rgba(255,255,255,.65);
}

.coprivin-form .form-note a{
  color:#d4af37;
  font-weight:700;
}

/* RESPONSIVE */
@media (max-width:991px){
  .coprivin-form{ margin-top:30px; }
}
/* =====================================================
   COPRIVIN — ÍTEMS NUMERADOS (INSTITUCIONAL)
   ===================================================== */

.coprivin-choose.sober .cop-number{
  min-width: 36px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(212,175,55,.85); /* dorado sobrio */
  line-height: 1;
  margin-top: 4px;
}

/* Ajuste del item para números */
.coprivin-choose.sober .cop-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

/* =====================================================
   COPRIVIN — ÚLTIMAS COBERTURAS
   ===================================================== */

.coprivin-coverages{
  background:#ffffff;
}

/* Card */
.cop-coverage{
  border: 1px solid rgba(0,0,0,0.08);
  background:#fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cop-coverage:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border-color: rgba(212,175,55,0.35);
}

/* Imagen */
.cop-coverage__img{
  display:block;
  overflow:hidden;
}

.cop-coverage__img img{
  width:100%;
  height: 230px;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}

.cop-coverage:hover .cop-coverage__img img{
  transform: scale(1.04);
}

/* Body */
.cop-coverage__body{
  padding: 18px 18px 20px;
}

.cop-coverage__meta{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 10px;
  display:flex;
  gap: 8px;
  align-items:center;
}

.cop-coverage__title{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 10px 0;
  color:#111;
}

.cop-coverage__title a{
  color:#111;
}
.cop-coverage__title a:hover{
  color:#d4af37;
}

.cop-coverage__text{
  color:#555;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 14px;
}

/* Botón: reutiliza tu cop-btn-pro (bajo y pro) */
.cop-coverage .cop-btn-pro{
  display:inline-flex;
}
/* =====================================================
   COPRIVIN — ÚLTIMAS COBERTURAS (DARK)
   ===================================================== */

.coprivin-coverages-dark{
  background:#0b0b0b;
}

/* Títulos */
.coprivin-coverages-dark .section-title h2{
  color:#ffffff;
  font-weight:900;
}

.coprivin-coverages-dark .section-title p{
  color:rgba(255,255,255,.70);
}

/* Card */
.cop-coverage-dark{
  background:#0f0f0f;
  border:1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cop-coverage-dark:hover{
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 18px 45px rgba(0,0,0,.65);
}

/* Imagen */
.cop-coverage-img{
  overflow:hidden;
}

.cop-coverage-img img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition: transform .35s ease;
}

.cop-coverage-dark:hover img{
  transform: scale(1.04);
}

/* Body */
.cop-coverage-body{
  padding:18px;
}

.cop-coverage-meta{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(212,175,55,.75);
  margin-bottom:8px;
}

.cop-coverage-title{
  color:#ffffff;
  font-size:18px;
  font-weight:800;
  margin-bottom:10px;
}

.cop-coverage-body p{
  color:rgba(255,255,255,.70);
  font-size:14px;
  line-height:1.6;
  margin-bottom:14px;
}
/* =========================
   HERO VIDEO RESPONSIVE PRO
   ========================= */
.hero-video-banner{
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* Desktop: alto completo + barras laterales */
.hero-video{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 1;
}

/* =========================
   MOBILE: ancho completo / alto proporcional
   ========================= */
/* =========================
   MOBILE: 1:1 y que LLENE todo
   ========================= */
@media (max-width: 767px){

  .hero-video-banner{
    height: auto !important;
    aspect-ratio: 1 / 1;     /* ⬅️ alto según el ancho */
    background:#000;
    position: relative;
    overflow: hidden;
  }

  .hero-video-banner .hero-video{
    position: absolute;
    inset: 0;                /* ⬅️ llena todo el contenedor */
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;       /* ⬅️ clave para que no quede chico */
    display: block;
  }

  /* overlay encima del video (si usas texto) */
  .hero-video-overlay{
    position: absolute;
    inset: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;   /* texto abajo (opcional) */
    padding-bottom: 26px;    /* aire abajo */
  }
}

.breadcrumb-area{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-area{
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px){
    .breadcrumb-area{
        background-size: contain;
    }
}

.breadcrumb-area{
    min-height: 250px;
}
.breadcrumb-area{
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

@media (max-width: 768px){
    .breadcrumb-area{
        min-height: 110px;
    }
}

/* CONTACTOS */

.cop-contact-box{
background:#0d0d0d;
padding:40px;
border-radius:8px;
border:1px solid rgba(212,175,55,0.4);
}

.cop-contact-box h3{
color:#d4af37;
margin-bottom:20px;
}

.cop-contact-item{
display:flex;
align-items:center;
margin-bottom:15px;
font-size:16px;
}

.cop-contact-item i{
color:#d4af37;
font-size:22px;
margin-right:12px;
}

.cop-contact-form{
background:#0d0d0d;
padding:40px;
border-radius:8px;
border:1px solid rgba(212,175,55,0.4);
}

.cop-contact-form h3{
color:#d4af37;
margin-bottom:20px;
}

.cop-contact-form input,
.cop-contact-form textarea{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #333;
background:#111;
color:#fff;
}

.cop-contact-form input:focus,
.cop-contact-form textarea:focus{
border-color:#d4af37;
outline:none;
}

.cop-btn{
background:#d4af37;
border:none;
padding:12px 30px;
color:#000;
font-weight:600;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.cop-btn:hover{
background:#c6a52d;
}

/* =========================================================
   CONTACTOS
   ========================================================= */

.cop-contact-page{
  background:#000;
  color:#fff;
  padding-top:80px;
  padding-bottom:80px;
}

.cop-contact-page .section-title p{
  color:#cfcfcf;
}

.cop-contact-card,
.cop-map-card{
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.30);
  border-radius:14px;
  padding:34px;
  height:100%;
}

.cop-contact-card h3,
.cop-map-card h3{
  color:#d4af37;
  margin-bottom:12px;
  font-weight:700;
}

.cop-contact-lead,
.cop-map-head p{
  color:rgba(255,255,255,0.78);
  margin-bottom:28px;
  font-size:15px;
  line-height:1.8;
}

.cop-contact-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:28px;
}

.cop-contact-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.cop-contact-icon{
  width:48px;
  min-width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(212,175,55,0.12);
  border:1px solid rgba(212,175,55,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
}

.cop-contact-icon i{
  color:#d4af37;
  font-size:21px;
}

.cop-contact-content h5{
  color:#fff;
  font-size:17px;
  margin-bottom:4px;
  font-weight:600;
}

.cop-contact-content p{
  color:rgba(255,255,255,0.78);
  margin:0;
  line-height:1.7;
}

.cop-contact-content a{
  color:rgba(255,255,255,0.88);
}

.cop-contact-content a:hover{
  color:#d4af37;
}

.cop-contact-social{
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.cop-contact-social h5{
  color:#fff;
  margin-bottom:15px;
  font-size:17px;
  font-weight:600;
}

.cop-contact-social-links{
  display:flex;
  align-items:center;
  gap:12px;
}

.cop-contact-social-links a{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(212,175,55,0.10);
  border:1px solid rgba(212,175,55,0.24);
  color:#d4af37;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  transition:all .25s ease;
}

.cop-contact-social-links a:hover{
  background:#d4af37;
  color:#000;
  transform:translateY(-2px);
}

.cop-contact-form .row{
  margin-left:-8px;
  margin-right:-8px;
}

.cop-contact-form .row > div{
  padding-left:8px;
  padding-right:8px;
  margin-bottom:16px;
}

.cop-contact-form input,
.cop-contact-form textarea{
  width:100%;
  background:#111;
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  border-radius:10px;
  padding:14px 16px;
  font-size:14px;
}

.cop-contact-form input::placeholder,
.cop-contact-form textarea::placeholder{
  color:rgba(255,255,255,0.55);
}

.cop-contact-form input:focus,
.cop-contact-form textarea:focus{
  border-color:rgba(212,175,55,0.65);
  box-shadow:none;
  outline:none;
}

.cop-contact-form textarea{
  min-height:160px;
  resize:vertical;
}

.cop-contact-btn{
  width:100%;
  min-height:54px;
  border:none;
  border-radius:10px;
  background:linear-gradient(90deg, #d4af37, #f1cf63);
  color:#000;
  font-weight:700;
  letter-spacing:.03em;
  transition:all .25s ease;
}

.cop-contact-btn:hover{
  filter:brightness(1.03);
  transform:translateY(-1px);
}

.cop-map-card{
  margin-top:8px;
}

.cop-map-wrap{
  overflow:hidden;
  border-radius:12px;
  border:1px solid rgba(212,175,55,0.18);
}

.cop-map-wrap iframe{
  display:block;
  width:100%;
}

@media (max-width: 991px){
  .cop-contact-card,
  .cop-map-card{
    padding:24px;
  }
}

@media (max-width: 767px){
  .cop-contact-page{
    padding-top:60px;
    padding-bottom:60px;
  }

  .cop-contact-card,
  .cop-map-card{
    padding:20px;
  }

  .cop-contact-item{
    gap:12px;
  }

  .cop-contact-icon{
    width:42px;
    min-width:42px;
    height:42px;
  }

  .cop-contact-icon i{
    font-size:18px;
  }
}

/* =========================================================
   CONTACTOS
   ========================================================= */

.cop-contact-page{
    background: #000;
}

.cop-contact-head{
    margin-bottom: 50px;
}

.cop-contact-head h2{
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}

.cop-contact-head p{
    color: rgba(255,255,255,.78);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.9;
}

.cop-contact-info,
.cop-contact-form-wrap{
    padding-right: 20px;
}

.cop-contact-info h3,
.cop-contact-form-wrap h3,
.cop-map-head h3{
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 14px;
}

.cop-contact-lead,
.cop-map-head p{
    color: rgba(255,255,255,.78);
    margin-bottom: 28px;
    line-height: 1.9;
}

.cop-contact-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.cop-contact-icon{
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212,175,55,.10);
    border: 1px solid rgba(212,175,55,.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cop-contact-icon i{
    color: #d4af37;
    font-size: 21px;
}

.cop-contact-content h5{
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cop-contact-content p{
    color: rgba(255,255,255,.82);
    margin: 0;
    line-height: 1.8;
}

.cop-contact-content a{
    color: rgba(255,255,255,.88);
}

.cop-contact-content a:hover{
    color: #d4af37;
}

.cop-contact-social{
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.cop-contact-social h5{
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.cop-contact-social-links{
    display: flex;
    gap: 12px;
}

.cop-contact-social-links a{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.25);
    background: rgba(212,175,55,.08);
    color: #d4af37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: all .25s ease;
}

.cop-contact-social-links a:hover{
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.cop-contact-form .row{
    margin-left: -8px;
    margin-right: -8px;
}

.cop-contact-form .row > div{
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

.cop-contact-form input,
.cop-contact-form textarea{
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    color: #fff;
    padding: 15px 16px;
    font-size: 14px;
}

.cop-contact-form input::placeholder,
.cop-contact-form textarea::placeholder{
    color: rgba(255,255,255,.52);
}

.cop-contact-form input:focus,
.cop-contact-form textarea:focus{
    border-color: rgba(212,175,55,.55);
    outline: none;
    box-shadow: none;
}

.cop-contact-form textarea{
    min-height: 180px;
    resize: vertical;
}

.cop-contact-btn{
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #d4af37, #ebcb63);
    color: #000;
    font-weight: 700;
    letter-spacing: .03em;
    transition: all .25s ease;
}

.cop-contact-btn:hover{
    filter: brightness(1.03);
    transform: translateY(-1px);
}

.cop-map-full{
    background: #000;
    padding: 20px 0 0;
}

.cop-map-head{
    padding: 0 15px 28px;
}

.cop-map-full-wrap{
    width: 100%;
    line-height: 0;
}

.cop-map-full-wrap iframe{
    display: block;
    width: 100%;
}

@media (max-width: 991px){
    .cop-contact-info,
    .cop-contact-form-wrap{
        padding-right: 0;
    }

    .cop-contact-head{
        margin-bottom: 35px;
    }
}

@media (max-width: 767px){
    .cop-contact-page{
        overflow-x: hidden;
    }

    .cop-contact-item{
        gap: 12px;
        margin-bottom: 20px;
    }

    .cop-contact-icon{
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .cop-contact-icon i{
        font-size: 18px;
    }

    .cop-map-full-wrap iframe{
        height: 380px;
    }
}

/* =========================================================
   GALERIA
   ========================================================= */

.cop-gallery-page{
background:#000;
}

.cop-gallery-title{
color:#fff;
font-weight:700;
margin-bottom:12px;
}

.cop-gallery-subtitle{
color:rgba(255,255,255,0.75);
margin-bottom:50px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.cop-gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.cop-gallery-item{
overflow:hidden;
border-radius:10px;
}

.cop-gallery-item img{
width:100%;
height:220px;
object-fit:cover;
transition:transform .35s ease;
}

.cop-gallery-item:hover img{
transform:scale(1.06);
}

/* tablet */

@media(max-width:992px){

.cop-gallery-grid{
grid-template-columns:repeat(3,1fr);
}

}

/* mobile */

@media(max-width:768px){

.cop-gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.cop-gallery-item img{
height:180px;
}

}