:root{
  --urde-pink: #f1a2c8;     
  --urde-pink-dark: #e08bb8;
  --verde-stock: #7dbb8f;
}

/* NAV ----------------------------------------------------------------------*/
#navTop .navbar-nav{
  display: flex;
  gap: 30px;
}

.mi-link{
  color:white;
  text-decoration:none;
  transition:.3s;
}

.mi-link:hover{ color:#ccc; }

.mi-imag{ width:20px; }



/* LOGO--------------------------------------------------------------------- */
.navbar-brand img{
  height:50px;
  width:auto;
}

/* BODY---------------------------------------------------------------------- */
body{
  background:#fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main{
  flex: 1;
  padding-top: 75px;
}



/* NAV TOGGLER -------------------------------------------------*/
.navbar-toggler{
  background-color:#fff!important;
}

/* THUMBNAILS----------------------------------------------------- */
.thumb{
  width:70px;
  height:90px;
  object-fit:cover;
  cursor:pointer;
  opacity:.6;
  transition:.3s;
  border-radius:4px;
}

.thumb:hover,
.thumb.active-thumb{
  opacity:1;
  transform:scale(1.05);
  border:2px solid var(--urde-pink);
}

/* BREADCRUMB --------------------------------------------------------------*/
.breadcrumb-urde{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#888;
  margin-bottom:40px;
}

.breadcrumb-urde a{
  color:#000;
  text-decoration:none;
}

.breadcrumb-urde a:hover{ color:#888; }

.breadcrumb-urde .active{
  font-weight:800;
}




/* BARRA SUPERIOR -----------------------------------------------------------*/
.top-bar{
  position: fixed;
  top: 0;
  width: 100%;
  height: 36px;
  background: #ed9dc7;
  color: #fff;
  z-index: 1100;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* contenedor animado */
.top-bar > span{
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* spans internos SIN animación */
.top-bar > span span{
  padding-left: 0;
  animation: none;
}

/* separador */
.top-bar .sep{
  display: inline-block;
  margin: 0 10px;
}


/* animación */
@keyframes marquee{
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* baja el navbar */
#navTop{
  top: 36px;
}


/* MOBILE */
@media (max-width: 576px){
  .top-bar{
    height: 42px;
  }

  .top-bar > span{
    font-size: 13px;
  }

  #navTop{
    top: 42px;
  }

}
.top-bar .sep{
  display: inline-block;
  width: 8px;   
}



/* CONTACTO BOTÓN ARREPENTIMIENTO ----------------------------------------------*/
.contacto-arrepentimiento{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contacto-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-size: 15px;
}

.contacto-item i{
  font-size: 18px;
  color: var(--urde-pink);
}

.contacto-item:hover{
  text-decoration: underline;
}





/* FOOTER ---------------------------------------------------------------------------*/
.footer-urde{
  background:#1f2428;
  color:#fff;
  padding:16px 0;
  font-size:14px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-left{
  flex:1;
  opacity:.85;
}

.footer-right{
  flex:1;
  display:flex;
  justify-content:flex-end;
  gap:14px;
}

.footer-right a{
  color:#fff;
  opacity:.85;
  transition:.3s;
}

.footer-right a:hover{
  opacity:1;
}
@media (max-width: 768px){
  .footer-inner{
    flex-direction:column;
    gap:8px;
  }

  .footer-center{
    position:static;
    transform:none;
    order:2;
  }

  .footer-right{
    order:3;
    justify-content:center;
  }
}

/* FOOTER DESKTOP CENTRADO Y EN BLOQUES */
@media (min-width: 769px){

  .footer-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .footer-copy{
    font-size: 13px;
    opacity: .85;
  }

  .footer-legal{
    font-size: 12px;
    opacity: .75;
    max-width: 680px;
    line-height: 1.4;
  }

  .footer-social{
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-social a i{
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

  .footer-social p{
    margin: 0;
    font-size: 13px;
    letter-spacing: .08em;
  }
  .footer-urde{
  padding: 32px 0 36px;
}
}
/* LINKS FOOTER EN BLANCO Y NEGRITA */
.footer-urde a{
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .3s;
}

.footer-urde a:hover{
  opacity: .8;
  text-decoration: none;
}

/* FOOTER BASE (MOBILE) */
.footer-copy{
  font-size: 13px;
  opacity: .85;
}

.footer-legal{
  font-size: 12px;
  opacity: .75;
  line-height: 1.4;
  text-align: center;
}

.footer-social{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social p{
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
}

/* DESKTOP */
@media (min-width: 769px){
  .footer-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .footer-legal{
    max-width: 680px;
  }
}




/* ESPACIADO ENTRE SECCIONES -----------------------------------------------*/
.descripcion + h1{
  margin-top: 56px;
}

h1{
  padding-top: 0px;
}


/*_--------------------------------------------------------------*/



/* RESPIRACIÓN GENERAL EN MOBILE */
@media (max-width: 768px){

  main.container{
    padding-left: 25px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .descripcion p,
  .descripcion li{
    line-height: 1.6;
  }

  h1{
    margin-top: 28px;
    margin-bottom: 16px;
  }

}
@media (max-width: 768px){

  /* Más aire lateral en el navbar */
  #navTop .container{
    padding-left: 40px;
    padding-right: 50px;
  }

  /* Microajuste logo */
  .navbar-brand{
    margin-left: 0;
  }
.mi-imag{
  height: 18px;
  width: auto;
  vertical-align: middle;
  opacity: .9;
}

.mi-imag:hover{
  opacity: 1;
}

  /* Microajuste hamburguesa -------------------------------*/
  .navbar-toggler{
    margin-right: 0;
  }
}

/* CORRECIONES PARA EL NAVBAR-----------------------------------*/
#navTop{
  padding-top: 10px;
  padding-bottom: 10px;
}

.mi-link{
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.mi-imag{
  height: 18px;
  width: auto;
  vertical-align: middle;
  opacity: .9;
}

.mi-imag:hover{
  opacity: 1;
}
.top-bar{
  background: var(--urde-pink);
  backdrop-filter: none;
}

/* MENU HAMBURGUESA COMPACTO */
@media (max-width: 768px){

  .nav-compact{
    gap: 0 !important;
  }

  .nav-compact li{
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-compact li a{
    padding: 6px 0 !important;
    line-height: 1.1;
    display: flex;
    align-items: center;
  }

  .navbar-collapse{
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
/* HOVER SUAVE EN MOBILE */
@media (max-width: 768px){
  .nav-compact li a{
    transition: color .2s ease, transform .2s ease;
  }

  .nav-compact li a:hover{
    transform: translateX(2px);
  }
}


/* NAVBAR DESKTOP – LINKS A LA DERECHA */
@media (min-width: 768px){
  #navbarCollapse{
    display: flex !important;
    justify-content: flex-end;
  }

  #navTop .navbar-nav{
    margin-left: auto;
    align-items: center;
  }
}


/*---------------------------------------------------------------------------------------*/

.grid{
  display:flex;
  flex-direction:column;
}

.banner{
  position:relative;
  width:100%;
  overflow:hidden;
}

.banner img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .4s ease;
}

.banner:hover img{
  transform:scale(1.03);
}


