/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77;
}

p,
.paragraph {
  font-weight: 400;
  color: #2c2d2d;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  color: #1b4674;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,.h1 {
  font-size: 60px;
}
@media (max-width: 575px) {  h1,  .h1 {    font-size: 45px;  }}

h2,
.h2 {
  font-size: 40px;
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 25px;
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  font-size: 20px;
}
@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

h5,
.h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}
@media (max-width: 575px) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: transform 0.2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}
.btn:active,
.btn:hover,
.btn.focus,
.btn:focus,
.btn.active {
  outline: 0;
  box-shadow: none !important;
}
.btn:active::before,
.btn:hover::before,
.btn.focus::before,
.btn:focus::before,
.btn.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  color: #fff;
  background-color: #ffbc3b;
}
.btn-primary::before {
  background-color: #fff;
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active {
  color: #ffbc3b !important;
  background-color: rgb(255, 170.5663265306, 8) !important;
  border-color: rgb(255, 170.5663265306, 8) !important;
}

.btn-outline-primary {
  color: #ffbc3b;
  background-color: transparent;
  border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
  background-color: #fff;
}
.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  color: #ffbc3b !important;
  background-color: #ffbc3b !important;
  border-color: #ffbc3b !important;
}

.btn-light {
  color: #ffbc3b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light::before {
  background-color: #ffbc3b;
}
.btn-light:active,
.btn-light:hover,
.btn-light.focus,
.btn-light:focus,
.btn-light.active {
  color: #fff !important;
  background-color: #fff !important;
  border: 1px solid #fff !important;
}

body {
  background-color: #f3f5f5;
  overflow-x: hidden;
}

::-moz-selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

::selection {
  background: rgb(255, 205.4336734694, 110);
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffdc11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: 0.2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: 0.8;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #1a1a37 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #5c5c77;
}

.text-light {
  color: #8585a4 !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #1e1e4b !important;
}

.font-secondary {
  font-family: "Montserrat", sans-serif;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden;
  }
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}
.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}

.navigation {
  background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: 0.2s ease;
}
@media (max-width: 991px) {
  .navigation {
    background: #1a1a37;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
    max-height: calc(100vh - 80px);
  }
  .navbar-collapse.show {
    overflow-y: auto;
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0;
    background: #1a1a37;
  }
}

.nav-bg {
  background-color: #1a1a37;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

@media (max-width: 991px) {
  .nav-item:last-child {
    margin-bottom: 20px;
  }
}
.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  pointer-events: none;
}
@media (max-width: 991px) {
  .nav-item::before {
    opacity: 0.1;
    height: 100%;
  }
}
.nav-item:hover::before,
.nav-item.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.navbar .nav-item > .dropdown-toggle::after {
  border: 0;
  margin-left: 0.255em;
  vertical-align: 1px;
  content: "\e64b";
  font-family: "themify";
  font-size: 11px;
  width: auto;
}
.navbar .dropdown .dropdown-menu li {
  padding-top: 10px;
}

.navbar .dropdown .dropdown-menu li:last-child {
  padding-bottom: 15px;
}

.navbar .dropdown .dropdown-menu.dropdown-submenu {
  top: 0;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
    margin-top: 15px;
  }
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
  display: block;
  line-height: 1.8;
}

.navbar .dropdown:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 0 15px;
  padding-left: 5px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    padding-left: 15px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
    margin: 0;
    border: 0;
    position: static;
  }
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}
.navbar .dropdown .dropdown .dropdown-toggle,
.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: 0.2s ease;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 991px) {
  .navbar .dropdown .dropdown .dropdown-toggle,
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown .dropdown .dropdown-toggle:hover,
.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}


/* =================================================================================================
                                     SECCION CONTACTANOS
   ================================================================================================= */

/* VARIABLES CORPORATIVAS */
:root {
    --navy-blue: #001a3d;
    --lime-green: #a6ce39;
    --white: #ffffff;
    --bone-white: #e2e8d5;
}

.contact-section {
    padding-top: 180px;
    padding-bottom: 40px; 
    background-color: #f0f2f5; 
}

.contact-card-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* 60% / 40% */
    max-width: 1150px;
    margin: 0 auto;
    background-color: #001a3d;
    border-radius: 15px;
    padding: 60px;
    gap: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* INFORMACIÓN (IZQUIERDA) */
.info-side {
    display: flex;
    flex-direction: column;
}

.title-main {
    font-family: "Montserrat", sans-serif;
  color: #b2cc18;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 100px;
}

.title-main span { color: var(--white); }

.details-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 15px;
}

.icon-lime {
    color: var(--lime-green);
    font-size: 1.2rem;
    margin-top: 5px;
}

.detail-text h3 {
    color: var(--lime-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.detail-text p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

.social-links-row {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--lime-green);
    color: var(--navy-blue);
}

/* FORMULARIO (DERECHA) */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px
}

input, select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e1e1e1; /* Línea de base muy suave */
  border-radius: 3px; /* BORDES MENOS REDONDOS */
  padding: 13px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-list { margin: 20px 0; }

.custom-check {
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 12px;
  color: #dee1d3;
  gap: 12px;
  cursor: pointer;
  line-height: 1.4;
}

.custom-check a { color: #b2cc18; text-decoration: underline; }

.custom-check input { position: absolute; opacity: 0; }

.checkmark {
  position: absolute; 
  top: 0; 
  left: 0;
  gap: 12px; 
  height: 18px; 
  width: 18px;
  border: 1px solid #e1e1e1; 
  border-radius: 2px;
}

.custom-check input:checked ~ .checkmark {
    background-color: #b2cc18;
    border-color: #b2cc18;
}

.btn-enviar-final {
  width: 100%;
  background: #dee1d3;
  color: #092149;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  padding: 17px;
  border: none;
  border-radius: 8px; /* BORDES MENOS REDONDOS */
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.btn-enviar-final:hover { background-color: var(--lime-green); }


/* SECCIÓN DEL MAPA */

.map-section-full {
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    line-height: 0; 
}

.map-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #1255ac;
}

.map-wrapper iframe {
    width: 100%;
    height: 520px;
    border: none;
    filter: grayscale(20%) contrast(1.0) brightness(0.8) hue-rotate(180deg) saturate(1.5) invert(10%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1) hue-rotate(0deg) invert(0%);
}

.map-section-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
    z-index: 2;
    pointer-events: none;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-card-main { grid-template-columns: 1fr; padding: 40px; }
    .contact-section { padding: 60px 20px; }
}

@media (max-width: 900px) {
    .map-container {
        margin: 0 20px;
        height: 350px;
    }
}



/* =================================================================================================
                                     BOTÓN VOLVER ARRIBA (BACK TO TOP)
   ================================================================================================= */

.btn-top-scroll {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #092149; /* Navy Institucional */
  color: #b2cc18; /* Verde Lima */
  border: 2px solid #b2cc18;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Inicialmente oculto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Estado cuando el usuario hace scroll hacia abajo */
.btn-top-scroll.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top-scroll:hover {
  background-color: #b2cc18;
  color: #092149;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(9, 33, 73, 0.2);
}

/* Pequeño indicador visual de que es interactivo */
.btn-top-scroll i {
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .btn-top-scroll {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* =====================================================================================================
                                                SECCION : FOOTER
   ===================================================================================================== */

.ft-footer-area {
  background-color: #092149;
  position: relative;
  margin-top: 10px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.ft-main-content {
  padding-bottom: 70px;
}

/* --- 1. Newsletter Flotante --- */
.ft-newsletter-card {
  background: #ffffff;
  padding: 35px 45px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(-50%);
  z-index: 100;
  border-bottom: 5px solid #b2cc18;
}
.ft-news-title {
  font-family: "Montserrat", sans-serif;
  color: #092149;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0;
}
.ft-news-text {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}
.ft-btn-lime {
  background: #b2cc18 !important;
  color: #092149 !important;
  font-weight: 700;
  border-radius: 0 50px 50px 0 !important;
  border: none;
  padding: 0 25px;
}

/* --- 2. Brand Motto (Diferenciado tipográficamente) --- */
.ft-brand-motto {
  font-family: "Open", sans-serif; /* Cambio de fuente para diferenciar */
  font-weight: 500; /* Más delgado y elegante */
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
  letter-spacing: 0.5px;
}

/* --- 3. Títulos de Columna (Color corregido a Blanco) --- */
.ft-col-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #ffffff !important; /* Aseguramos blanco puro */
  display: inline-block;
}

.ft-col-title::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: #b2cc18;
  margin-top: 8px;
}

/* --- Enlaces --- */
.ft-links-list {
  list-style: none;
  padding: 0;
}
.ft-links-list li {
  margin-bottom: 12px;
}
.ft-links-list li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: 0.3s;
}
.ft-links-list li a:hover {
  color: #b2cc18;
  padding-left: 5px;
}

/* --- SECCIÓN CONTACTO (Bajo las columnas) --- */
.ft-contact-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-top: 0px;
}

.ft-contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.ft-contact-info-item i {
  color: #b2cc18;
  font-size: 1.1rem;
}

/* Botón Contacto */
.ft-btn-contact-small {
  background: transparent;
  border: 2px solid #b2cc18;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ft-btn-contact-small:hover {
  background: #b2cc18;
  color: #092149;
  text-decoration: none;
  transform: translateY(-2px);
}

/* --- Redes Sociales --- */
.ft-social-links {
  display: flex;
  gap: 12px;
}
.ft-social-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.ft-social-item:hover {
  background: #b2cc18;
  color: #092149;
  transform: translateY(-3px);
}

/* --- Barra Inferior --- */
.ft-copyright-bar {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.text-lime {
  color: #b2cc18;
}
.ft-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: 0.3s;
  margin: 0 8px;
}
.ft-legal-links a:hover {
  color: #b2cc18;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ft-main-content {
    text-align: center;
  }
  .ft-brand-motto {
    margin: 25px auto;
  }
  .ft-col-title::after {
    margin: 8px auto 0;
  }
  .ft-social-links,
  .ft-contact-horizontal {
    justify-content: center;
  }
  .ft-contact-horizontal {
    flex-direction: column;
    gap: 25px;
  }
  .ft-newsletter-card {
    transform: translateY(-10%);
    text-align: center;
    padding: 30px 20px;
  }
  .ft-btn-lime {
    border-radius: 50px !important;
    width: 100%;
    height: 50px;
    margin-top: 10px;
  }
}

/* ==========================================================================================
                                  ESTILO SISTEMA DE COOKIES
   ========================================================================================== */
.cook-sys-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.cook-sys-card {
  background: white;
  width: 100%;
  max-width: 550px;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: cookFadeUp 0.4s ease;
}

@keyframes cookFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cook-sys-card h3 {
  color: #0d3272;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.cook-sys-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 25px;
}
.cook-sys-card a {
  color: #3264ff;
  font-weight: 600;
}

/* Botones */
.cook-sys-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-cook-main,
.btn-cook-sec,
.btn-cook-alt {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.3s;
  flex: 1;
  min-width: 140px;
}
.btn-cook-main {
  background: #b2cc18;
  color: #0d3272;
} /* Color Verde */
.btn-cook-sec {
  background: #0d3272;
  color: white;
} /* Color Azul */
.btn-cook-alt {
  background: #f1f1f1;
  color: #555;
}

/* Tabla de Preferencias */
.cook-sys-table-header {
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  font-size: 0.7rem;
  font-weight: 800;
  color: #999;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.cook-sys-item {
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 10px;
}
.cook-cat {
  font-weight: 700;
  color: #333;
  font-size: 0.85rem;
}
.cook-desc {
  font-size: 0.75rem;
  color: #777;
}

/* Switch de Toggle */
.cook-switch {
  position: relative;
  width: 45px;
  height: 22px;
}
.cook-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cook-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.cook-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .cook-slider {
  background-color: #b2cc18;
}
input:checked + .cook-slider:before {
  transform: translateX(23px);
}

.cook-sys-footer {
  text-align: right;
  margin-top: 20px;
}
.hidden {
  display: none !important;
}
