/*   
  Theme Name: Platicas Prematrimoniales 2022-2028
  Author: Depto. Maquetacion y Desarrollo Digital 
  Version: 1.0
*/

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  /*  display: table;*/
}

body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  /* ~15.2px–16.8px */
  line-height: 1.6;
  font-weight: 400;
  color: var(--body);
  font-family: var(--font-open);
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-encode);
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  /* 32px–40px */
  /*line-height: 1.2;*/
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  /* 28px–32px */
  /*line-height: 1.3;*/
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 1.75rem);
  /* 24px–28px */
  /*line-height: 1.3;*/
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  /* 20px–24px */
  /*line-height: 1.4;*/
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  /* 18px–20px */
  /*line-height: 1.4;*/
  font-weight: 500;
}

h6 {
  font-size: clamp(1rem, 2vw, 1rem);
  /* 16px */
  /*line-height: 1.5;*/
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--vino);
}

a:hover {
  color: var(--dorado);
  text-decoration: underline;
  transition: color 0.3s ease, transform 0.2s ease;
}

:focus-visible {
  outline: 2px dashed var(--dorado);
  outline-offset: 2px;
}

/* Mejor foco para links y botones */
a:focus,
button:focus {
  /*outline: 2px dashed var(--dorado);*/
  outline-offset: 2px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Formularios */
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(171, 23, 56, 0.25);
}

.form-control:focus {
  box-shadow: none;
}

/* ===============================
  Definir colores
================================== */
:root {
  --body: #565B5F;
  --font-encode: 'Encode Sans', sans-serif;
  --font-open: "Open Sans", sans-serif;
  --font-inter: "Inter", sans-serif;
  --vino: #AB1738;
  --dorado: #BC955B;
  --gris: #53565A;
  --beige: #FCFBF8;
  --vino-o: #4e0b15;
  --bg-dorado: #E6D5B580;
  /* ===============================
     Paleta en formato RGB
  =============================== */
  --body-rgb: 86, 91, 95;
  --vino-rgb: 171, 23, 56;
  --dorado-rgb: 188, 149, 91;
  --gris-rgb: 83, 86, 90;
  --beige-rgb: 252, 251, 248;
  --vino-o-rgb: 78, 11, 21;
}

/* ===============================
   Utilidades de Color – Texto
================================== */
.text-body {
  color: var(--body) !important;
}

.text-vino {
  color: var(--vino) !important;
}

.text-vino-o {
  color: var(--vino-o) !important;
}

.text-dorado {
  color: var(--dorado) !important;
}

.text-gris {
  color: var(--gris) !important;
}

.text-beige {
  color: var(--beige) !important;
}


/* ===============================
   Utilidades de Color – Fondo
================================== */
.bg-body {
  background-color: var(--body) !important;
}

.bg-vino {
  background-color: var(--vino) !important;
}

.bg-vino-o {
  background-color: var(--vino-o) !important;
}

.bg-dorado {
  background-color: var(--dorado) !important;
}

.bg-gris {
  background-color: var(--gris) !important;
}

.bg-beige {
  background-color: var(--beige) !important;
}


/* ===============================
   Utilidades de Color – Bordes
================================== */
.border-vino {
  border-color: var(--vino) !important;
}

.border-vino-o {
  border-color: var(--vino-o) !important;
}

.border-dorado {
  border-color: var(--dorado) !important;
}

.border-gris {
  border-color: var(--gris) !important;
}

/* ===============================
   Boton y Hover
================================== */
.btn-vino {
  background-color: var(--vino) !important;
  color: #fff !important;
  border: none !important;
}

.btn-vino:hover,
.btn-vino:focus {
  background-color: var(--vino-o) !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(171, 23, 56, 0.5);
}

/*.btn-blanco {
  color: var(--vino) !important;
  background-color: #fff !important;
  border: none !important;
}*/

/*.btn-blanco:hover,
.btn-blanco:focus {
  background-color: var(--vino) !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(171, 23, 56, 0.5);
}*/

/* ===============================
  Boton Llave Mx
================================== */
.btn.border-vino-o:hover {
  border-color: var(--vino-o);
  opacity: .9;
  color: var(--vino-o);
}

.btn.btn-llave {
  border: 1.5px solid;
  font-weight: 500;
  font-size: clamp(9px, 2vw, 14px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background-color 0.35s ease-in-out,
    color 0.35s ease-in-out,
    border-color 0.35s ease-in-out,
    opacity 0.35s ease-in-out,
    padding 0.35s ease-in-out,
    transform 0.35s ease-in-out;
}

.btn.btn-llave:hover {
  background-color: var(--vino-o) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.btn.btn-llave img {
  max-height: 26px;
  border-right: 1px solid var(--dorado);
  padding-right: 10px;
  margin-right: 10px;
}

.btn-llave {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.img-normal {
  transition: opacity 0.3s ease;
}

.btn-llave:hover .img-normal {
  display: none;
}

.btn-llave:hover .img-hover {
  display: block !important;
}

/*scroll*/
body.is-sticky .icon-llave img {
  max-height: 22px;
  transform: scale(0.96);
  transition:
    max-height 0.4s ease-in-out,
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
  will-change: max-height, transform, opacity;
}

/* ===============================
   Scroll Top / Preloader
================================== */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  z-index: 9;
}

.scroll-top:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-circle circle {
  fill: none;
  stroke-width: 5;
}

.progress-circle .progress {
  stroke: var(--vino);
  fill: #fff;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.2s linear;
}

.scroll-top .arrow {
  position: relative;
  font-size: 20px;
  color: var(--vino);
  pointer-events: none;
  animation: pulse 1.5s infinite;
}

/* Animación pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/*Preloader*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.4s ease;
}

/* Animación spinner */
.spinner {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(171, 23, 56, 0.2);
  /* var(--vino) con opacidad */
  border-top-color: var(--vino);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.fancybox__container{
  z-index: 9999;
}
/* ===============================
   Header 
   ============================== */
#header {
  z-index: 9999;
  width: 100%;
  background-color: var(--bg-body);
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: relative;
}

#row-menu-header {
  height: 80px;
}

body.is-sticky #contenido-fix {
  position: fixed;
  top: var(--adminbar, 0px);
  left: 0;
  right: 0;
  z-index: 1100;
  background: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 0.95;
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
}

body.is-sticky #contenido-fix.is-visible {
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* El spacer evita el salto de contenido */
#header-spacer {
  height: 0;
  transition: none;
}

/* Logo */
#header .logo-home {
  z-index: 1;
  transition: all 0.4s ease-in-out;
  height: 80px;
  position: relative;
}

#header .logo-home .img-logo-home {
  max-height: 50px;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transform-origin: left;
}

body.is-sticky #header .logo-home .img-logo-home {
  max-height: 40px;
  transform: scale(0.9);
  opacity: 0.9;
}

/* Nav */
body.is-sticky #menu-container li a {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  padding: 6px 16px;
}

/* extra espacio a la derecha sólo para los que tienen submenú */
body.is-sticky #menu-container li.padre > a {
  padding-right: 25px;
}

/*Activo para scroll*/
#menu-container li.padre a::before{
  padding-right: 25px;
}

#menu-container li a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;   
  right: 16px;  
  height: 1px;
  background-color: var(--vino);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
#menu-container a.active-section {
  color: var(--vino);
  font-weight: 600;
}

#menu-container a.active-section::before {
  transform: scaleX(1);
}
/* =========================
   Nav estilos menu/submenus
   ========================= */
#menu-container{
  display: flex;
  align-items: center;
  height: 100%;
}

#menu-menu-principal {
  display: flex;
  align-items: center;   /* centra los li hijos */
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Los li del primer nivel */
#menu-menu-principal > li {
  display: flex;
  align-items: center;
  height: 100%; 
}

/* Los li de submenús vuelven a ser bloques normales */
#menu-menu-principal li ul li {
  display: block;
  height: auto;
  align-items: initial;
}

#menu-container li {
  float: left;
  border: 0;
  transition: all .3s ease;
  position: relative;
  height: 100%;
}

#menu-container li a {
  font-size: clamp(0.85rem, 1vw, 1rem);
  padding: 10px 20px;
  font-family: var(--font-encode);
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--dorado);
  line-height: normal;
  font-weight: 500;
  text-align: center;
  transition: color 0.18s ease, padding 0.3s ease;
  position: relative;
}

/* Cambia color según el estado del header:
/*#header:not(.fixed-header) #menu-container li a { color: #fff; }
#header.fixed-header #menu-container li a { color: var(--body); }
#header.fixed-header #menu-container li:hover > a { color: var(--vino); }*/

#menu-container .menu-item-has-children > a { position: relative; padding-right: 30px; }

#menu-container .menu-item-has-children > a::after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 0.85rem;
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(90deg); 
  right: 9px;
  transition: transform .25s ease, color .18s ease;
  pointer-events: none;
  color: inherit;
}

/* subniveles: ajusta posición de la flecha */
#menu-container .sub-menu .menu-item-has-children > a::after { right: 10px; }

/* hover / focus / .open para animar la flecha */
/* nivel top: al abrir, rotamos para indicar "cerrar" (flecha hacia arriba) */
#menu-container > ul > li.menu-item-has-children:hover > a::after,
#menu-container > ul > li.menu-item-has-children:focus-within > a::after,
#menu-container > ul > li.menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(270deg);
  color: var(--vino);
}

/* subniveles: cuando se abren, la flecha pasa de right -> down (rotate 0) */
#menu-container .sub-menu li.menu-item-has-children:hover > a::after,
#menu-container .sub-menu li.menu-item-has-children:focus-within > a::after,
#menu-container .sub-menu li.menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(0deg);
  color: var(--vino);
}

/* corrección: selector anterior tenia .menu-container (clase) por error */
#menu-container .sub-menu> li:hover > a,
#menu-container .sub-menu li a:focus-within {
  color: var(--vino);
}

/* Dropdown */
@keyframes fade-in-out { 0% { opacity: 0; } 100% { opacity: 1; } }

#menu-container li ul {
  background-color: #fff;
  min-width: 230px;
  margin-top: -6px;
  border-radius: 4px;
  box-shadow: 0 33px 32px rgb(0 0 0 / 10%);
  padding: 10px;
  display: none;
  position: absolute;
  text-align: left;
  animation: fade-in-out .3s ease;
  z-index: 1200;
  top: calc(100% - 6px);
}

#menu-container li:hover > ul,
#menu-container a:focus-within + ul,
#menu-container li.open > ul {
  display: block;
  animation: fade-in-out .25s ease;
}

#menu-container li ul li { display: block; transition: all .3s ease; margin: 0; width: 100%; }
#menu-container li ul li a { text-transform: initial; transition: all .3s ease; }

/* Sub-submenus */
#menu-container li ul li ul {
  margin-left: -2px;
  left: 100%;
  top: -1px;
  z-index: 1;
}

#menu-container .sub-menu li a {
  font-family: var(--font);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #444;
  padding: 12px 20px;
  display: block;
  transition: .3s ease;
  height: auto !important;
}

#menu-container li a:focus-visible {
  outline: 3px solid rgba(0,0,0,0.12);
  outline-offset: 2px;
}

/*clase directa desde menu aparencia*/
#menu-container .invert ul{
  right: 0;
  left: auto;
}

.menu-responsivo .offcanvas-backdrop {
  display: none !important;
}
/* =========================
   Menu Responsivo
   ========================= */
#header #barras-boton{
  cursor: pointer;
}

#header .nav-bars i{
  font-size: 30px;
  padding: 8px;
  color: var(--dorado);
  border: 1px solid var(--dorado);
  border-radius: 5px;
  cursor: pointer;
}

#header .menu-responsivo .offcanvas-header img{
  max-height: 50px;
}

#header .menu-responsivo .offcanvas-body .footer{
  font-size: 7px;
  line-height: normal;
}

#header .menu-responsivo .offcanvas-body .footer .logo-r img{
  max-height: 80px;
}

#row-menu-movil {
  border-top: 1px solid rgba(var(--gris-rgb), 0.25);
  border-bottom: 1px solid rgba(var(--gris-rgb), 0.25);
}

/*estilos menu*/
.nav-menu {
  position: relative;
  width: 100%;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 10px 40px 10px 15px; 
  text-decoration: none;
  transition: color 0.3s;
  color: var(--body);
}

.nav-menu li a.sub-open {
  font-weight: bold;
}

.nav-menu li.padre > a {
  display: block;
  position: relative; 
  padding: 10px 40px 10px 15px;
  text-decoration: none;
}

.nav-menu li.padre > a::after {
  content: "\f078"; 
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  right: 15px;       
  top: 50%;
  transform: translateY(-50%) rotate(0deg); 
  transition: transform 0.3s;
}

.nav-menu li.padre.open > a::after {
  transform: translateY(-50%) rotate(180deg); 
  color: var(--vino);
}

.nav-menu .sub-menu.hijo {
  display: none; 
  padding-left: 15px;
}

#row-menu-movil::-webkit-scrollbar{
    -webkit-appearance: none;
}

#row-menu-movil::-webkit-scrollbar:vertical{
    width:10px;
}

#row-menu-movil::-webkit-scrollbar-button:increment,
#row-menu-movil::-webkit-scrollbar-button{
    display: none;
} 

#row-menu-movil::-webkit-scrollbar:horizontal{
    height: 10px;
}

#row-menu-movil::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
  border: 3px solid #f1f2f3;
}

#row-menu-movil::-webkit-scrollbar-track {
    border-radius: 10px;  
}
/*fin header*/


/* ===============================
   Footer
================================== */
#footer {
  color: #fff;
  font-family: var(--open);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

#footer .inner-footer {
  padding: 0 0 30px;
  background: var(--dorado);
  position: absolute;
  width: 100%;
  top: 40px;
}

#footer .inner-footer .terminos-y-condiciones a {
  font-size: 13px;
  font-weight: 300;
}

#footer .bg-ft {
  height: 150px;
  background: var(--bg-dorado);
  overflow: hidden;
}

#footer .bg-ft .forma-ft {
  background: var(--dorado);
  width: 120%;
  height: 100%;
  left: 50%;
  border-radius: 50%;
  top: 0;
  transform: translateX(-50%);
}

#footer-rows .logo-footer img.escudo {
  max-height: 120px;
}

/*liston terminos y condiciones*/
#footer #terminos-y-condiciones * {
  font-size: 11px;
}

/*fin*/

/******************************
** Secciones *****
*******************************/
.section-margin {
  margin-bottom: 100px;
}

/******************************
 * ** Titulo secciones ** ***************
 * */
.row-titulo h2.titulo {
  font-size: clamp(22px, 5vw, 40px);
  font-weight: 400;
  margin-bottom: 70px;
}

/******************************
 * ** Linea del tiempo ** ***************
 * */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  width: fit-content
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.timeline-step.activo .texto {
  font-weight: 800 !important;
  color: var(--vino) !important;
}

.timeline-step.activo .circle {
  color: white;
  background-color: var(--vino);
}

.timeline-step.activo svg path {
  fill: white;
}

.circle {
  width: 70px;
  height: 70px;
  background-color: white;
  border: 4px solid var(--vino);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vino);
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-step::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 30px;
  background-color: var(--vino);
  top: 70px;
  left: 35px;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-step:last-child::after {
  display: none;
}

/******************************
 * ** Sección Hero ** ***************
 * */
#hero {
  background-image: url('../img/secciones/hero/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 570px;
}

#hero p {
  font-size: clamp(16px, 3.5vw, 20px);
}

#hero .btn{
 font-family: var(--font-encode); 
}

/******************************
 * ** Sección Requisitos ** ***************
 * */
#requisitos  .content-requisitos {
  font-family: var(--font-inter);
  font-size: clamp(16px, 3.5vw, 20px);
}


/******************************
 * ** Sección Objetivos ** ***************
 * */
#objetivos {
  padding: 60px 0;
  background: url('../img/secciones/objetivos/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

#objetivos .imagen-step {
  max-height: 450px;
  border-radius: 270px 270px 0 0
}

/*#objetivos .content-objetivos p {
  font-size: clamp(16px, 2.5vw, 20px);
} 
*/
#objetivos #requisitos span {
  font-size: clamp(16px, 2.5vw, 20px);
}

/******************************
 * ** Sección Ubicaciones ** ***************
 * */
#ubicaciones {
  padding: 60px 0;
  background:
    linear-gradient(rgba(74, 0, 18, 0.97), rgba(74, 0, 18, 0.97)),
    url('../img/secciones/ubicaciones/bg.png');
  background-color: var(--vino-o);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

#ubicaciones .cabecera {
  text-align: start;
}

#ubicaciones p,
#ubicaciones li a {
  font-size: clamp(16px, 2.5vw, 20px);
}

#ubicaciones .timeline {
  padding-left: 2rem;
}

#ubicaciones .timeline-step {
  gap: 16px;
  margin: 10px 0;
}

#ubicaciones .timeline-step:has(:focus) .texto,
#ubicaciones .timeline-step:hover .texto {
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

#ubicaciones .timeline-step:has(:focus) .circle,
#ubicaciones .timeline-step:hover .circle {
  transform: scale(1.2);
}

#ubicaciones .timeline-step .circle {
  width: 18px;
  height: 18px;
  border: 0px;
  background-color: #D9D9D9;
}

#ubicaciones .timeline-step::after {
  width: 4px;
  height: 38px;
  background-color: #E6D5B5;
  top: 22px;
  left: 9px;
}

#ubicaciones #mapa {
  position: absolute;
  top: -125px;
  right: 0;
  width: 100%;
  max-width: 400px;
}

#ubicaciones #mapa .ubicacion-clickable {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    fill 0.2s ease;
  transform-origin: center;
}

#ubicaciones #mapa .ubicacion-clickable:focus,
#ubicaciones #mapa .ubicacion-clickable:hover {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transform: scale(1.02) translate(14px, -4px);
  z-index: 1000;
}

/******************************
 * ** Preguntas frecuentes ** ***************
 * */
.preguntas-frecuentes {
  margin: 60px 0;
}

#row-accordion .accordion-button:focus {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#row-accordion .accordion-button:not(.collapsed) {
  color: var(--vino);
  background-color: transparent;
  box-shadow: none;
}

#row-accordion .accordion-item {
  border: 0;
}

#row-accordion .accordion-item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 20px);
}

#row-accordion .accordion-button::after {
  background-image: none;
  content: "\f13a";
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: 17px;
}

#row-accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
}

#row-accordion .accordion-item .accordion-collapse p.respuestas {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/*fin*/

/******************************
* ** Contacto ** ***************
* */
.contacto-home {
  background: var(--bg-dorado);
  padding: 70px 0;
}

.contacto-home h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.contacto-home .info-contacto {
  font-size: 16px;
  font-weight: 400;
}

.contacto-home #form-platicas .btn {
  width: 200px;
  background-color: var(--dorado);
  border-color: var(--dorado);
}

.contacto-home #form-platicas .form-control{
  border-color: var(--dorado);
}

/*.contacto-home .form-floating>label {
  font-size: 15px;
}*/


/*fin*/


/* ============================
   Media Queries – Bootstrap 5
   Desktop First (con herencia)
============================ */

/*  Ultra grandes (≥1600px) – Monitores 4K */
@media (max-width: 1599.98px) {
  /* Ajustes opcionales para pantallas muy grandes */
  /*.container { background-color: #ff010182;}*/
}


/* Extra grandes (≥1400px y <1600px) – Bootstrap xxl */
@media (max-width: 1399.98px) {
  /*.container {background-color: #d0f0c082;}*/
  /* verde limon */

}

/* Grandes (≥1200px y <1400px) – Bootstrap xl */
@media (max-width: 1199.98px) {
  /*.container {background-color: #add8e687;}*/
  /* celeste */

}


/* Medianas (≥992px y <1200px) – Bootstrap lg */
@media (max-width: 991.98px) {
  /*.container { background-color: #ffc0cb96;}*/
  /*rosa*/

  /*objetivos*/
  #objetivos .row-gap-3 .col-lg-4:nth-child(2) {
    /*background-color: green;*/
    border: 0!important;
    border-top: 1px solid var(--dorado)!important;
    border-bottom: 1px solid var(--dorado)!important;
  }
  /*mapa*/
  #mapa-tam{
    height: 600px;
    display: flex; 
    justify-content: center;
  }

  #ubicaciones #mapa  {
    position: relative;
    top: 0;
    max-height: 600px;
  }

  /*footer*/
  #footer .bg-ft .forma-ft {
    width: 145%;
  }
}

/* Tablets (≥768px y <992px) – Bootstrap md */
@media (max-width: 767.98px) {
  /*.container {background-color: #80008033;}*/
  /*lila*/

  /*footer*/
  #footer .bg-ft .forma-ft {
    width: 165%;
  }

}

/* Móviles grandes (≥576px y <768px) – Bootstrap sm */
@media (max-width: 575.98px) {
  /*.container {background-color: #00790094;}*/
  /*verde*/

}


/* Móviles medianos (≥480px y <576px) – Personalizado */
@media (max-width: 479.98px) {
  /*.container {background-color: #0000ffa8;}*/
  /*morado*/

  /*footer*/
  #footer .bg-ft .forma-ft {
    width: 180%;
  }

}


/* Móviles pequeños (<480px) – Personalizado */
@media (max-width: 379.98px) {
  /*.container { background-color: #ff7f506e;}*/
  /*naranja*/

}