@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100..900&display=swap");

/*--------------------------------------------------------------
# botones flotantes
--------------------------------------------------------------*/
.fleet-chat{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
    font-family:"Inter Tight", sans-serif;
  }
  
  .fleet-chat-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0057ff, #00a8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: -3px 5px 7px rgba(0, 0, 0, .3);
    transition: .3s;
    position: relative; 
  }

  .fleet-chat-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-wave 1.5s infinite;
  }

  @keyframes pulse-wave {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    100% {
      transform: scale(1.7);
      opacity: 0;
    }
  }

  .fleet-chat-button:hover::before {
    animation: pulse-wave 0.75s infinite;
  }
  
  .fleet-chat-button:hover{
    transform:scale(1.1);
  }

  .fleet-chat-panel[style*="display: block"] + .fleet-chat-button::before {
    animation: none !important;
  }
  
  .fleet-chat-panel{
    position:absolute;
    right:0;
    bottom:85px;
    width:300px;
    background:white;
    border-radius:14px;
    box-shadow:0 12px 35px rgba(0,0,0,.25);
    overflow:hidden;
    display:none;
    animation:chatFade .3s ease;
  }
  
  @keyframes chatFade{
    from{opacity:0;transform:translateY(10px)}
    to{opacity:1;transform:translateY(0)}
  }
  
  .fleet-chat-header{
    background:linear-gradient(135deg,#008ba9,#00a0c2);
    color:white;
    padding:16px;
    font-size:15px;
    font-weight: bold;
  }
  
  .fleet-chat-status{
    font-size:12px;
    opacity:.9;
  }
  
  .fleet-chat-options{
    padding:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  
  .fleet-option{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px;
    background:#f5f7fb;
    border-radius:10px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:.2s;
  }
  
  .fleet-option:hover{
    background:#e9eefc;
  }
  
  .demo-btn{
    background:#0d6efd;
    color:white;
    font-weight:bold;
  }
  
  .demo-btn:hover{
    background:#0b5ed7;
  }
  
  .lead-form{
  padding:15px;
  border-top:1px solid #eee;
  }
  
  .lead-form input{
  width:100%;
  padding:8px;
  margin-bottom:8px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:13px;
  }
  
  .lead-form button{
  width:100%;
  background:#0057ff;
  color:white;
  border:none;
  padding:10px;
  border-radius:8px;
  cursor:pointer;
  }
  
  .lead-form button:hover{
  background:#0045cc;
  }
/*--------------------------------------------------------------
# popup
--------------------------------------------------------------*/
.popup-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content{
  padding: 30px;
  border-radius: 15px;
  width: 95%;
  max-width: 800px;
  max-height: 97vh;
  max-height: 97dvh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  background: #fff;
}

.close-popup {
  float: right;
  width: 30px;
  height: 30px;
  margin: -20px;
  border-radius: 100%;
  background: #ff6666;
  color: #fff;
  cursor: pointer;
}
.close-popup:hover {
  background-color: #ff4c4c;
}

@media (max-width: 768px) {
  #appointmentForm .form-group,
  #appointmentForm .form-header {
    margin-bottom: 15px;
  }

  #closeMeetingPopup.close-popup {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9;
    outline: 5px solid #fff;
  }
  
  .popup-content {
    padding: 0;
    /* top: 25px; */
  }
}
/*--------------------------------------------------------------
# appointment forms
--------------------------------------------------------------*/

/*.appointment-form {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}*/

.form-header {
  text-align: center;
  color: #666;
  font-size: 1.15em;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #008ba9;
  font-weight: 500;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #008ba950;
  position: absolute;
  font-size: 14px;
  z-index: 9 !important;
}

.form-control {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 0px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 10px rgba(30, 60, 114, 0.2);
  outline: none;
}

.error-message {
  color: #b02a37;
  font-size: 0.9em;
  line-height: 1;
  margin-top: 8px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-control.error {
  border-color: #e74c3c;
}

.form-control.success {
  border-color: #2ecc71;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 8px;
}

.time-slot {
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background: rgba(30, 60, 114, 0.1);
}

.time-slot.selected {
  background: #008ba9;
  color: white;
  border-color: #008ba9;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.success-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 15px;
}

.btn-close-success {
  background: #28a745;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

.time-slot.disabled,
.time-slot:disabled {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}

.time-slot.active {
  background: #0d6efd;
  color: #fff;
  border-color: #6da8fd;
}

#time-slots-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  text-align: center;
  animation: fadeIn 0.3s ease;
}
/*--------------------------------------------------------------
# validación
--------------------------------------------------------------*/

.form-control.is-valid {
  border-color: #198754;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

/*--------------------------------------------------------------
# contacto
--------------------------------------------------------------*/ 

/* Contenedor general */
/*.php-email-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}*/

/* Labels */
.php-email-form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

/* Inputs y textarea */
.php-email-form .form-control {
  border-radius: 0px;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Botón */
.php-email-form .btn-submit {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.php-email-form .btn-submit:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* Estados */
#contact-form-response .alert {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 0;
  text-align: center;
}
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* especial */
#contact-extra-extra,
#meeting-extra-extra {
  display: none !important;
}

/* Input group */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

/* Inputs */
.form-control {
  width: 100%;
  padding: 12px 12px 12px 35px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

/* Focus */
.form-control:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 0 3px rgba(13, 110, 253, 0.1);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
  outline: none;
}

/* Validación */
.form-control.is-valid {
  border-color: #198754;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

/* =========================
   HEADER BASE
========================= */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;

  transition: 
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;

  will-change: transform, backdrop-filter;
}

/* =========================
   ESTADOS
========================= */

/* HERO (inicio transparente) */
#header.header-transparent {
  background: transparent;
  backdrop-filter: blur(0px);
  box-shadow: none;
}

/* SCROLL (glass effect) */
#header.header-glass {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}



/* OCULTO */
#header.hide-header {
  transform: translateY(-110%);
}

/* VISIBLE FORZADO */
#header.show-header {
  transform: translateY(0);
}

/* =========================
   HOVER ZONE
========================= */
.top-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 9999;
}

/* =========================
   TRANSICIÓN DE LINKS
========================= */
#header .navmenu a {
  transition: color 0.3s ease;
}

#header.header-transparent .navmenu a {
  color: #ffffff;
}

#header.header-glass .navmenu a,
#header.header-solid .navmenu a {
  color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1199px) {
  #header {
    backdrop-filter: blur(10px);
  }
}

/* =========================
  icon
========================= */

.item-hover:hover .icono-animado {
  color: #0d6efd; 
} 

/* =========================
   🎯 TOKENS (LIGHT por defecto)
========================= */
/* =========================
   CARD BASE
========================= */
/* =========================
   CONTENEDOR BASE
========================= */
.service-item {
  /* cursor: pointer; */
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-size: 200% 100%;
  background-position: left;
  border-radius: 12px;
  min-height: 200px;
  transition: all 0.35s ease;
  color: #333333;
}

/* =========================
   HOVER → EFECTO
========================= */
.service-item:hover {
  transform: translateY(-6px);
  background-position: right;
}
/* efecto hover SVG */
.service-item:hover::after {
  transform: translateY(-50%) scale(1.1);
  opacity: 0.15;
}

/* =========================
   COLORES DINÁMICOS
========================= */
.service-item[data-color="primary"] {
  background-image: linear-gradient(-135deg,
    #fff 0%,
    #fff 10%,
    #f0bf5a 100%
  );
}

/* =========================
   SVG DECORATIVO
========================= */
.svg-bg {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.svg-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =========================
   CONTENIDO ENCIMA DEL SVG
========================= */
.service-item .contenido,
.service-item .icon {
  position: relative;
  z-index: 2;
}

/* Newsletter */

/* Contenedor */
.newsletter-form-classic {
  max-width: 600px;
  filter: drop-shadow(0 8px 12px rgba(16, 16, 16, 0.5));  
}

/* 🔹 NUEVO nombre (evita conflictos globales) */
.newsletter-group {
  display: flex;
  border: 1px solid #ccc;
  background: #fff;
}

/* Input */
.newsletter-form-classic input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 0;
  
}

/* Botón */
.newsletter-form-classic button {
  background: #e08331;
  color: #fff;
  border: none;
  padding: 0 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 0;
}

.newsletter-form-classic button:hover {
  background: #000;
}

/* Estados */
.loading,
.sent-message {
  display: none;
  font-size: 13px;
  margin-top: 8px;
}

.loading { color: #555; }
.sent-message { color: #146c43; }

/* Links del menú */
#navmenu ul li a {
  color: #ffffff; /* color base */
  transition: all 0.3s ease;
}

/* Hover estado */
#navmenu ul li a:hover,
.header .header-social-links a:hover {
  color: #eabb58 !important; /* cambia aquí el color que quieras */
}

/* Link activo */
#navmenu ul li a.active {
  color: #eabb58;
}

/* Opcional: hover también en activo */
#navmenu ul li a.active:hover {
  color: #0097a7;
}
/* Overlay con blur */
.inducom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9999;
}

/* Contenedor */
.inducom-modal-content {
  background: #fff;
  width: 90%;
  max-width: 1000px;
  padding: 30px;
  border-radius: 16px;
  position: relative;

  transform: scale(0.85) translateY(40px);
  opacity: 0;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Activo */
.inducom-modal.active {
  opacity: 1;
  visibility: visible;
}

.inducom-modal.active .inducom-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Cerrar */
.inducom-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Loader */
.inducom-loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 50px auto;
}

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

/* Scroll bloqueado */
body.no-scroll {
  overflow: hidden;
}




.footer-pattern {
  --sz: 4px;
  --sp: 5s;
  --b1: #211e1e;
  --b2: #1c1b18;
  --b3: #0c0b0a;
  --b4: #0c0b0ae0;
  --c1: #ffffff;
  --ts: 50% / calc(var(--sz) * 17.5) calc(var(--sz) * 29.5);

  background:
    radial-gradient(circle at 50% 50%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 0% 0%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 0% 100%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 100% 0%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 100% 100%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),

    conic-gradient(from 90deg at 97.5% 67%, var(--c1) 0 87.5deg, #fff0 88deg 100%) var(--ts),
    conic-gradient(from 182.5deg at 2.5% 67%, #fff0 0 0deg, var(--c1) 0.5deg 90deg, #fff0 0 100%) var(--ts),

    conic-gradient(from 270deg at 2.5% 33%, var(--c1) 0 87.5deg, #fff0 88deg 100%) var(--ts),
    conic-gradient(from 2.5deg at 97.5% 33%, #fff0 0 0deg, var(--c1) 0.5deg 90deg, #fff0 0 100%) var(--ts),

    conic-gradient(from 116.5deg at 50% 85.5%, var(--b1) 0 127deg, #fff0 0 100%) var(--ts),
    conic-gradient(from 120deg at 50% 83%, var(--c1) 0 120deg, #fff0 0 100%) var(--ts),

    conic-gradient(from -63.5deg at 50% 14.5%, var(--b1) 0 127deg, #fff0 0 100%) var(--ts),
    conic-gradient(from -60deg at 50% 17%, var(--c1) 0 120deg, #fff0 0 100%) var(--ts),

    conic-gradient(
      from 0deg at 50% 50%,
      #fff0 0 2deg,
      var(--b2) 2.5deg 57.5deg,
      #fff0 58deg 62.5deg,
      var(--b1) 63deg 117.5deg,
      #fff0 118deg 122.5deg,
      var(--b3) 123deg 177.5deg,
      #fff0 178deg 182deg,
      var(--b2) 182.5deg 237.5deg,
      #fff0 242.5deg,
      var(--b1) 243deg 297.5deg,
      #fff0 298deg 302.5deg,
      var(--b3) 303deg 357.5deg,
      #fff0 358deg 360deg
    ) var(--ts),

    var(--c1);

  animation: footerColors var(--sp) linear infinite;
}


/* animación */
@keyframes footerColors {
  100% {
    filter: hue-rotate(360deg);
  }
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}

.footer-pattern > * {
  position: relative;
  z-index: 1;
}
.botton-footer {
  position: relative;
  margin-top: 0;
  padding-top: 44px;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.96) 0%, rgba(14, 20, 27, 0.98) 100%);
  isolation: isolate;
  overflow: hidden;
}

.botton-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  --sz: 3px;
  --sp: 14s;
  --b1: rgba(33, 30, 30, 0.85);
  --b2: rgba(28, 27, 24, 0.72);
  --b3: rgba(12, 11, 10, 0.88);
  --b4: rgba(12, 11, 10, 0.38);
  --c1: rgba(255, 255, 255, 0.12);
  --ts: 50% / calc(var(--sz) * 17.5) calc(var(--sz) * 29.5);
  background:
    radial-gradient(circle at 50% 50%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 0% 0%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 0% 100%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 100% 0%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    radial-gradient(circle at 100% 100%, var(--b4) calc(var(--sz) * 1), #fff0 calc(var(--sz) * 8)) var(--ts),
    conic-gradient(from 90deg at 97.5% 67%, var(--c1) 0 87.5deg, #fff0 88deg 100%) var(--ts),
    conic-gradient(from 182.5deg at 2.5% 67%, #fff0 0 0deg, var(--c1) 0.5deg 90deg, #fff0 0 100%) var(--ts),
    conic-gradient(from 270deg at 2.5% 33%, var(--c1) 0 87.5deg, #fff0 88deg 100%) var(--ts),
    conic-gradient(from 2.5deg at 97.5% 33%, #fff0 0 0deg, var(--c1) 0.5deg 90deg, #fff0 0 100%) var(--ts),
    conic-gradient(from 116.5deg at 50% 85.5%, var(--b1) 0 127deg, #fff0 0 100%) var(--ts),
    conic-gradient(from 120deg at 50% 83%, var(--c1) 0 120deg, #fff0 0 100%) var(--ts),
    conic-gradient(from -63.5deg at 50% 14.5%, var(--b1) 0 127deg, #fff0 0 100%) var(--ts),
    conic-gradient(from -60deg at 50% 17%, var(--c1) 0 120deg, #fff0 0 100%) var(--ts),
    conic-gradient(
      from 0deg at 50% 50%,
      #fff0 0 2deg,
      var(--b2) 2.5deg 57.5deg,
      #fff0 58deg 62.5deg,
      var(--b1) 63deg 117.5deg,
      #fff0 118deg 122.5deg,
      var(--b3) 123deg 177.5deg,
      #fff0 178deg 182deg,
      var(--b2) 182.5deg 237.5deg,
      #fff0 242.5deg,
      var(--b1) 243deg 297.5deg,
      #fff0 298deg 302.5deg,
      var(--b3) 303deg 357.5deg,
      #fff0 358deg 360deg
    ) var(--ts);
  animation: footerColors var(--sp) linear infinite;
  opacity: 0.24;
  z-index: -1;
  pointer-events: none;
}

.botton-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(224, 131, 49, 0.95) 50%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 0 30px rgba(224, 131, 49, 0.35);
  pointer-events: none;
}

.botton-footer .footer-top {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 20px;
}

.botton-footer h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.botton-footer p,
.botton-footer .footer-links ul a,
.botton-footer .footer-contact p,
.botton-footer .copyright p,
.botton-footer .credits {
  font-weight: 500;
}

.botton-footer .footer-contact strong,
.botton-footer .sitename {
  font-weight: 700;
}

.botton-footer .footer-links ul i {
  margin-right: 6px;
  font-size: 14px;
  font-weight: 800;
}

.botton-footer .social-links a {
  width: 50px;
  height: 50px;
}

.botton-footer .social-links a i {
  font-size: 21px;
  font-weight: 700;
}

.botton-footer .copyright {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  padding-top: 24px;
}

@media (max-width: 767.98px) {
  .botton-footer {
    padding-top: 36px;
  }

  .botton-footer::before {
    --sz: 2.5px;
  }
}

/* Hover general (card lift) */
.item-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Ícono */
.icono-animado {
  display: inline-block;
  font-size: 28px;
  transition: color 0.3s ease;
}

/* Rebote + color */
.item-hover:hover .icono-animado {
  animation: rebote 0.6s cubic-bezier(.28, .84, .42, 1);
  color: #0d6efd;
}

/* Texto animación base */
.contenido {
  transition: all 0.4s ease;
}

/* Animación texto */
.item-hover:hover .contenido {
  transform: translateX(6px);
}

/* Keyframes rebote */
@keyframes rebote {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Título efecto */
.title a {
  transition: color 0.3s ease;
}

.item-hover:hover .title a {
  color: #0d6efd;
}

/* politica de privacidad */
#privacy-policy .privacy-policy-inner h2 {
  margin-bottom: 3rem;
}

#privacy-policy .privacy-policy-inner section {
  margin: 2rem 0;
  padding: 0;
}

#privacy-policy .privacy-policy-inner section h3 {
  margin-bottom: 0;
  padding: 0
}

#privacy-policy .privacy-policy-inner section p {
  margin: 1rem;
  text-align: justify;
}

@media (max-width: 600px) {
  #privacy-policy .privacy-policy-inner.popup-content {
    padding: 1rem;
  }
  #privacy-policy .privacy-policy-inner section p {
    margin: 1rem 0;
  }
  #privacy-policy .close-popup {
    position: fixed;
    z-index: 99;
    top: 43px;
    right: 35px;
  }
}