/*----------------------------------

DEFIT DEIGO GIMENO

-------------------------------------*/


:root {
  --primary-color: #d60000;
  --white-color: #ffffff;
  --dark-color: #171819;
  --about-bg-color: #f9f9f9;

  --gray-color: #c1b4b4;
  --link-color: #404040;
  --p-color: #ffffff;

  --base-font-family: 'Plain', sans-serif;
  --font-weight-bold: bold;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;

  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100%;
  --border-radius-small: 2px;
}


body {
  background: #171819;
  font-family: var(--base-font-family);
}


/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-thin);
  line-height: normal;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 20px 0;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--about-bg-color);
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

p {
  color: var(--about-bg-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.5em;
}

b,
strong {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.section {
  padding: 7rem 0;
}


/* BUTTON */

.custom-btn {
  background: transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  color: var(--primary-color);
}

.custom-btn:focus {
  box-shadow: white;
}

.custom-btn.bordered:hover,
.custom-btn.bordered:focus,

.custom-btn.bg-color:hover,
.custom-btn.bg-color:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.bg-color {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
     PRELOADER               
  -----------------------------------------*/
/* ANIMACIÓN del giro */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Spinner que gira (aplicado a la imagen del logo) */
.spinner {
  width: 140px;
  height: 140px;
  animation: spin 1s linear infinite;
}

/* Contenedor del preloader (pantalla de carga) */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  /* fondo durante la carga */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: auto;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  /* no capturar eventos cuando es invisible */
}

/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: var(--primary-color);
  outline: none;
  text-decoration: none;
}


/* BG OVERLAY */

.bg-overlay {
  background: var(--dark-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}



/*---------------------------------------
     MENU             
  -----------------------------------------*/

.navbar {
  background: var(--dark-color);
  padding: 1rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-brand {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  padding-top: 0;
  margin-left: 10px;
}

.nav-item .nav-link {
  display: block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  padding: 2px 6px;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  color: var(--primary-color);
}

.navbar .social-icon li a {
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-icon-img:hover {
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(-20deg) brightness(1.1) contrast(1.2);
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar.navbar-shrink {
  padding: 0.5rem 1rem;
  /* Reduce altura del navbar */
  transition: padding 0.3s ease;
}

.navbar-shrink .navbar-brand {
  font-size: 20px;
  /* Reduce tamaño del texto "DeFit" */
  transition: font-size 0.3s ease;
}

.navbar-shrink .logo {
  width: 80px;
  /* Reduce el tamaño del logo */
  transition: width 0.3s ease;
}

.navbar-shrink {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Centrar "DeFit" solo en móviles sin tapar el logo */
.mobile-center-brand {
  position: static;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  color: var(--white-color);
  /* o el color que estés usando */
  font-weight: bold;
  z-index: 2;
}


/*---------------------------------------
     LANDING              
  -----------------------------------------*/

.hero {
  background-image: url('../images/fondo1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  min-height: 100vh;
  position: relative;
}

/*---------------------------------------
     LOGO              
  -----------------------------------------*/
.logo {
  width: 120px;
  /* Tamaño del logo (ajustable) */
  height: auto;
  /* Mantiene proporción original */
  display: block;
  margin-left: 10px;
  padding-left: 0;
  margin-right: 20px;
}


/*--------------------------------------
      SOBRE MI 
  -----------------------------------------*/
#about p {
  text-align: justify;
}

.about {
  background: var(--dark-color);
  color: #ffffff;
}

.img-fluid {
  width: 250px;
  /* ajusta al tamaño deseado */
  height: 250px;
  object-fit: cover;
  /* asegura que la imagen se recorte bien */
  border-radius: 50%;
  /* hace que sea circular */
  border: 2px solid rgb(0, 0, 0);
  /* borde negro fino */
  background-color: white;
  /* fondo blanco por si la imagen tiene transparencia */
  display: block;
  margin: 0 auto;
  /* centra la imagen horizontalmente */
  box-shadow: 0 4px 20px rgb(179, 168, 168);
}

.vertical-line {
  width: 2px;
  height: 100%;
  background-color: red;
  margin: 0 auto;
}


/*---------------------------------------
      LOGOTIPOS FRANJA ROJA       
-----------------------------------------*/

#logotipos-exp {
  background-color: #6b1010;
  /* Rojo fuerte */
}

.logo-empresa {
  max-height: 60px;
  margin: 10px 20px;
  filter: brightness(0) invert(1);
  /* Opcional: pone los logos en blanco si son negros */
}

.logos-img {
  max-height: 60px;
  margin: 10px 20px;
}



/*---------------------------------------
      PLANES ENTRENAMIENTO       
-----------------------------------------*/


.planes-section {
  margin-bottom: 50px;
  margin-top: 50px;
}


#planes h3 {
  color: #f9f9f9;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: center;
}

#planes p {
  text-align: center;

}
.image-container {
    position: relative;
    display: inline-block;
    max-width: 260px; /* igual que .entrenamiento */
    margin: 0 auto; /* centrado igual que la imagen */
    border-radius: 15px; /* igual que la imagen */
    overflow: hidden; /* para que el overlay siga el borde redondeado */
    box-shadow: 0 4px 12px rgb(179, 168, 168); /* igual que la imagen */
}

.entrenamiento {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 1px;
    animation: glow 2s infinite alternate ease-in-out;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        background: rgba(0, 0, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        background: rgba(0, 0, 0, 0.75);
    }
}






/*---------------------------------------
    INFORMACION - DEFIT
-----------------------------------------*/
#informativa {
  color: #f9f9f9;
  line-height: normal;
}

.rocket {
  margin-bottom: 20px;
  margin-top: 0;
}

.linea-separadora {
  border: none;
  border-top: 1px solid red;
  margin: 40px auto;
  width: 100%;
}

/* -------------------------------------
    METODO DE TRABAJO DEFIT
---------------------------------------- */
.img-metodos {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgb(179, 168, 168);
}

#metodo {
  background-color: #171819;
}

#metodo p {
  color: #f9f9f9;
  text-align: justify;
}

#metodo h3 {
  color: #f9f9f9;
  text-align: justify;
  flex-wrap: wrap;
}

.paso-numero {
  font-weight: bold;
  margin-right: 8px;
  font-size: 25px;
}

.titulo-metodos {
  color: #f9f9f9;
  word-spacing: 10px;
}

/*---------------------------------------
     HARBIZ SECTION
-----------------------------------------*/
.harbiz-section {
  background-color: var(--dark-color);
  padding: 60px 20px;
}

.logo-harbiz {
  max-width: 260px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(179, 168, 168, 0.8);
  background-color: white;
  padding: 20px;
}

.harbiz-section h2 {
  color: var(--white-color);
  margin-bottom: 20px;
}

.harbiz-section p {
  color: var(--about-bg-color);
  text-align: justify;
  margin-bottom: 5%;
}

.harbiz-section .custom-btn.bordered {
  border-color: var(--primary-color);
  color: var(--primary-color);
  margin-top: 25px;
  padding: 12px 32px;
}

.harbiz-section .custom-btn.bordered:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
     CONTACTO              
-----------------------------------------*/

.contact-section {
  background-color: #171819;
  padding: 30px 20px;
  margin-bottom: 50px;
}

h1 {
  color: white;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 0px;

}

.container-contacto {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.contacto-texto {
  flex: 1 1 400px;
  text-align: left;
  color: white;
  margin-left: 0px;
}

.contacto-texto h1 {
  font-size: auto;
  color: white;
}

.contacto-texto h3 {
  font-size: 20px;
  color: white;
  margin-top: 20px;
}

.contacto-texto p {
  font-size: 16px;
  margin-top: 10px;
}

.img-evaluacion {
  max-width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}

.contacto-formulario {
  flex: 1 1 400px;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.contacto-formulario button {
  background-color: #6b1010;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto-formulario button:hover {
  background-color: #a21414;
}


/*---------------------------------------
     FOOTER              
-----------------------------------------*/

.site-footer {
  padding: 3rem 0;
  color: #fff;
  /* texto blanco */
}

/* Línea roja separadora encima del footer */
.footer-separator {
  border: none;
  border-top: 2px solid #d60000;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 40px;
}

/* Centrado del contenido */
.site-footer .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

/* Columnas del footer */
.site-footer .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Listas de enlaces */
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

/* Enlaces blancos con hover rojo */
.site-footer a {
  color: #fff;
  font-weight: var(--font-weight-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary-color);
  /* rojo o color principal */
}

/* Íconos sociales */
.site-footer .fa {
  margin-bottom: auto;
  color: var(--primary-color);
}

/* Texto general del footer */
.site-footer p {
  font-size: var(--base-font-size);
  margin: 0;
  color: #fff;
}

/* Espacio debajo de derechos reservados */
.footer-copyright {
  margin-bottom: 30px;
}

.site-footer .col-md-4 a:first-child {
  margin-right: 40px;
  /* espacio grande solo entre iconos */
}

.instagramm {
  margin-bottom: 15px;
}

/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 5px 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  margin: 5px 10px;
  text-align: center;
}

.social-icon li a:hover {
  color: var(--primary-color);
}


/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/
@media screen and (max-width: 992px) {

  /* Ajuste general */
  .section {
    padding: 5rem 0;
  }

  /* Navegación */
  .nav-item .nav-link {
    padding: 6px;
  }

  .navbar .social-icon {
    margin-top: 22px;
  }

  .navbar-collapse,
  .site-footer {
    text-align: center;
  }

  /* Tablas */
  .schedule-table {
    display: block;
  }

  /* Modal */
  .modal-content {
    padding: 2rem;
  }

  /* Títulos y párrafos adaptados */
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
  }

  /* Sección Método */
  #metodo {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  #metodo h2 {
    margin-top: 20px;
    color: #f9f9f9;
    text-align: center;
  }

  .entrenamiento {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(179, 168, 168);
    margin-bottom: 15px;
  }

  /* Textos de la sección about */
  .about h3,
  .about p {
    text-align: left;
    max-width: 85%;
    margin: 0 auto;
  }

  /* Planes */
  #planes p {
    text-align: center;
    margin-bottom: 10px;
  }

  /* Método texto centrado */
  .metodo h2,
  .metodo p {
    text-align: center;
  }

  #about .col-lg-5 {
    margin-top: 0 !important;
  }

  /* Logos experiencia */
  #logotipos-exp .container {
    flex-wrap: nowrap !important;
    overflow-x: auto;
  }

  #logotipos-exp img {
    max-height: 45px;
    margin: 10px 10px;
    flex-shrink: 0;
  }

  /* Navbar fix */
  .navbar .logo,
  .navbar .navbar-toggler {
    z-index: 2;
  }

  /* Separaciones en móvil y tablet */
  .class-thumb p {
    margin-bottom: 1.5rem !important;
  }

  #metodo .img-metodos {
    margin-bottom: 1.5rem;
  }

  #metodo .titulo-metodos {
    margin-bottom: 1rem;
    text-align: center;
  }

  /* Contacto */
  .container-contacto {
    gap: 20px;
  }

  /* HARBIZ sección */
  .logo-harbiz {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(179, 168, 168, 0.8);
    background-color: white;
    padding: 15px;
  }

  .harbiz-section p {
    text-align: justify;
    margin-bottom: 25px;
  }

  .harbiz-section h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .harbiz-section .custom-btn.bordered {
    display: block;
    margin: 25px auto 0 auto;
    padding: 12px 32px;
    width: fit-content;
  }

  /* Footer centrado */
  .site-footer .row.justify-content-center {
    justify-content: center !important;
    text-align: center;
    flex-wrap: wrap;
  }

  .site-footer .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }

  .site-footer .col-md-4 ul.list-unstyled {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .site-footer .col-md-4 ul.list-unstyled li {
    margin-bottom: 10px;
  }

  .site-footer .col-md-4.mb-4 a {
    margin: 0 15px;
    display: inline-block;
  }

  .site-footer .row:last-child .col-12 {
    text-align: center;
    padding: 0 20px;
  }

  .footer-copyright {
    color: #fff;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: justify;
    margin-top: 15px;
    padding: 0 20px;
  }

  /* Otros ajustes */
  .instagramm {
    margin-bottom: 15px !important;
  }

  .footer-separator {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .titulo-metodos {
    color: #f9f9f9;
    word-spacing: 10px;
  }
}


/* MOVILES */

@media screen and (max-width: 767px) {

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 26px;
  }

  p {
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
  }

  #metodo {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  #metodo h2 {
    margin-top: 20px;
    color: #f9f9f9;
    text-align: center;
  }

  .entrenamiento {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgb(179, 168, 168);
    margin-bottom: 15px;
  }

  .about h3,
  .about p {
    text-align: left;
    max-width: 85%;
    margin: 0 auto;
  }


  #planes p {
    text-align: center;
    margin-bottom: 10px;
  }

  .metodo h2,
  .metodo p {
    text-align: center;

  }

  #about .col-lg-5 {
    margin-top: 0 !important;
  }


  #logotipos-exp .container {
    flex-wrap: nowrap !important;
    overflow-x: auto;
  }

  #logotipos-exp img {
    max-height: 40px;
    margin: 10px 10px;
    flex-shrink: 0;
  }

  .navbar .logo,
  .navbar .navbar-toggler {
    z-index: 2;
  }

  .class-thumb p {
    margin-bottom: 1.5rem !important;
    /* más separación entre h3 y p en móvil */
  }

  #metodo .img-metodos {
    margin-bottom: 1.5rem;
    /* Espacio entre imagen y h2 */
  }

  #metodo .titulo-metodos {
    margin-bottom: 1rem;
    /* Espacio entre h2 y p */
    text-align: center;
  }

  .container-contacto {
    gap: 20px;
  }



  /* HARBIZ SECCION */
  .logo-harbiz {
  display: block;
  max-width: 200px; /* controla el tamaño máximo */
  width: 100%; /* se adapta al contenedor */
  height: auto; /* mantiene proporción */
  margin: 0 auto 20px auto; /* centrado y margen inferior */
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(179, 168, 168, 0.8);
  background-color: white;
  padding: 15px; /* espacio interno */
}

  .harbiz-section p {
    text-align: justify;
    margin-bottom: 25px;
  }

  .harbiz-section h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .harbiz-section .custom-btn.bordered {
    margin-top: 25px;
    padding: 12px 32px;
    width: 100%;
  }

  .harbiz-section .custom-btn.bordered {
    display: block;
    margin: 25px auto 0 auto;
    /* arriba 25px, centrado horizontal */
    width: fit-content;
    /* opcional, para que no se estire */
  }

  





  .site-footer .row.justify-content-center {
    justify-content: center !important;
    text-align: center;
    flex-wrap: wrap;
  }

  .site-footer .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }

  /* Lista de enlaces centrada */
  .site-footer .col-md-4 ul.list-unstyled {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    /* centra texto dentro de la lista */
  }

  /* Links dentro de la lista */
  .site-footer .col-md-4 ul.list-unstyled li {
    margin-bottom: 10px;
  }

  /* Centrar los iconos sociales en la columna correspondiente */
  .site-footer .col-md-4.mb-4 a {
    margin: 0 15px;
    /* espacio entre iconos */
    display: inline-block;
  }

  /* Centrar el texto de derechos reservados */
  .site-footer .row:last-child .col-12 {
    text-align: center;
    padding: 0 20px;
  }

  /* Opcional: estilo para el texto copyright */
  .footer-copyright {
    color: #fff;
    /* blanco */
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: justify;
    margin-top: 15px;
    padding: 0 20px;
  }




  .instagramm {
    margin-bottom: 15px !important;
  }

  .footer-separator {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .titulo-metodos {
    color: #f9f9f9;
    word-spacing: 10px;
  }


}