/* ===== RESET ===== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🔥 elimina scroll lateral */
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* 🔥 CLAVE: ocupa exactamente el ancho visible */

  height: 80px;
  background-color: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;
  box-sizing: border-box; /* 🔥 evita que el padding lo agrande */

  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Logo */
header .logo {
  margin-left: 20px;
}

header .logo img {
  width: 150px;
  height: auto;
  max-width: 100%;
}

/* Nav */
header nav {
  margin: 0;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

header nav ul li a {
  white-space: nowrap;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: bold;
  color: #424141;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
}

header nav ul li a:hover {
  background-color: rgba(0,156,163,0.7);
  color: white;
}

/* Login */
header .login {
  margin-right: 20px;
  display: flex;
  gap: 15px;
}

header .login a {
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

header .login .btn-login {
  border: 1px solid #424141;
  color: #424141;
}

header .login .btn-register {
  background-color: #f7aa00;
  color: white;
}

/* ===============================
   RESPONSIVE
================================ */

.menu-toggle {
  display: none;
}

.mobile-only {
  display: none;
}

@media (max-width: 992px) {

  body {
    padding-top: 80px;
  }

  header {
    justify-content: center;
  }

  header .logo {
    margin: 0 auto;
  }

  header .logo img {
    max-width: 140px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  header nav,
  header .login {
    display: none;
  }

  header nav.active {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0; /* 🔥 igual que header */
    width: 100%;

    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
  }

  .mobile-only {
    display: block;
  }
}


/* --------------------------------------------------------------------------"*/
 /* =====CONTENEDOR PRINCIPAL===== */
.container {
  padding-top: 320px; 
}

.container {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;

  background-image: url("index-inicio/images/index/background.png");
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #009ca3;

  height: clamp(910px, 40vh, 420px); 
  padding: 300px 20px;

  text-align: center;
  color: white;
}

/* Imagen central */
.container img {
  position: relative;
  transform: translateY(clamp(-125px, -25vh, -215px));  
  max-width: 90%; 
  width: clamp(680px, 45vw, 650px);
  height: auto;
  max-width: 100%;
}

/* Título principal */
.container h1 {
  position: relative;
  font-family: Arial, sans-serif;
  color: #fff;
  text-shadow: 0px 10px 30px rgba(0, 0, 0, 0.9);
  font-weight: bold;
  display: inline-block;

  font-size: clamp(48px, 12vw, 150px);   
  transform: scaleY(1.2);

  margin-top: clamp(-160px, -10vh, -180px);
}

.hero-text {
  display: flex;
  flex-direction: row;      
  align-items: center;
  justify-content: center;
  gap: clamp(240px, 180vw, 340px);
  transform: translateY(clamp(10px, -2vh, -10px)); 
}


/* Textos */
.p-one,
.p-two {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 2vw, 25px);
  letter-spacing: 1px;
  font-weight: 100;
  text-shadow: 5px 10px 6px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  margin: 0;
}


/* Botones */
.button-container {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: clamp(8rem, 50rem, 25rem); 
  width: 100%;
  position: relative;
  margin-top: -600px;
  z-index: 10;
}


.button-container button {
  background-color: #f7aa00;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;

  width: 220px;          
  max-width: 220px;
  padding: 15px 0;       

  text-align: center;
  white-space: nowrap;  

  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.button-container button:hover {
  background-color: #005459;
  transform: scale(1.02);
}

.button-container button:active {
  transform: scale(0.95);
}

/* Textos debajo botones */
.b-suplier,
.b-costuner {
  position: relative;
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: 100;
  white-space: nowrap;
}

.b-suplier {
   transform: translate(
    clamp(-180px, -12vw, -370px),
    clamp(-220px, -30vh, -350px)
  );
}

.b-costuner {
  transform: translate(
    clamp(180px, 12vw, 760px),
    clamp(-180px, -26vh, -300px)
  );
}

/* =====RESPONSIVE CONTAINER===== */

@media (max-width: 991.98px) {

  .container {
   height: clamp(680px, 30vh, 370px);
  }

  /* TÍTULO */
  .container h1 {
    margin-top: 0; /* neutraliza */
    transform: translateY(-220px) scaleY(1.2);
    text-align: center;
  }

  
  .container img {
    max-width: 530px;
    width: 90%;
    margin-top: 0;            
    transform: translateY(-300px);
    will-change: transform;
    
  }
  .hero-text {
    transform: translateY(-215px);
    gap: 190px;
  }
  
  .button-container {
    display: flex;
    flex-direction: row;          
    gap: 18rem;                   
    transform: translateY(-80px);  
  }

  .button-container button {
    width: 180px;         
    max-width: 180px;      
    padding: 8px 0;        
    font-size: 13px;
    border-radius: 36px;
    text-align: center;
    white-space: nowrap;
  }


}

@media (max-width: 575.98px) {

  .container {
    background-size: cover; 
    background-position: center center;
    background-attachment: scroll; 
    height: clamp(460px, 10vh, 150px);
  }

  
  .container h1 {
    font-size: clamp(40px, 1.5vw, 42px);
    margin-top: 0;        
    transform: translateY(-250px);
  }

  .hero-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(90px, 20vw, 190px);
  }
.p-one,
.p-two {
  
  font-size: clamp(12px, 1.8vw, 14px);   
  line-height: 1.3;
  max-width: 240px;
  white-space: normal;
  white-space: normal;   
  max-width: 260px;      
  text-align: center;
}

.container img {
    max-width: 400px;
    margin:  40px auto 10px auto;   
    display: block;
  }

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    margin-top: -210px;
}

.button-container button {
    width: 105px;
    min-width: 115px;
    max-width: 120px;

    padding: 8px 0;
    font-size: 8px;

    border-radius: 36px;
    text-align: center;
    white-space: nowrap;
}

}

/* --------------------------------------------------------------------------"*/
/* =====TITULO "ENCUENTRA LO QUE NECESITAS"===== */

h2{
    text-align: center;
    white-space: nowrap;
    color: #1d687a;
    font-family: Arial, sans-serif;
    letter-spacing: -5px;
    font-size: clamp(28px, 5vw, 70px);

    margin: 20px;

    white-space: normal;      
    overflow-wrap: break-word; 
}

/* =====RESPONSIVE TITULO===== */
@media (max-width: 991.98px) {

  h2 {
    font-size: clamp(23px, 3.5vw, 30px);
    letter-spacing: -2px;
    margin: 30px auto;

    max-width: 700px;     
    width: 90%;

    text-align: center;
    white-space: normal;  
    line-height: 1.2;
  }

}
@media (max-width: 575.98px) {

  h2 {
    font-size: clamp(14px, 2vw, 10px);
    letter-spacing: -1px;
    margin:20px auto;

    max-width: 700px;     
    width: 90%;

    text-align: center;
    white-space: normal;  
    line-height: 1.2;
  }

}

/* --------------------------------------------------------------------------"*/
/* =====CARRUSEL IMAGENES PROYECTO===== */

.carrusel { 
  position: relative;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 5;   /* controla la altura sin usar height */
  margin: auto;
  overflow: hidden;
}

.carrusel-imagenes {
  display: flex;
  height: 100%; /* importante para evitar franja blanca */
  transition: transform 0.3s ease-in-out;
}

.carrusel-imagen {
  flex: 0 0 33.333%; 
  position: relative; 
  overflow: hidden; 
  height: 100%; /* evita desbordes con zoom */
}

.carrusel-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carrusel-imagen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(247,170,0,0.45); 
  z-index: 1;
  transition: background-color 0.3s ease-in-out;
  pointer-events: none;
}

.carrusel-imagen:hover::before {
  background-color: rgba(0, 84, 89, 0.5); 
}

/* ===== INFORMACIÓN ===== */

.carrusel-imagen .information {
  position: absolute;
  inset: 0;                       
  display: flex;
  flex-direction: column;
  justify-content: center;        
  align-items: center;            
  text-align: center;
  z-index: 2;
  padding: 20px;
  pointer-events: none;           
  color: white;
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
}

.carrusel-imagen .information > * {
  pointer-events: all;
  max-width: 90%;
  box-sizing: border-box;
}

.carrusel-imagen:hover .information {
  opacity: 1;
}

.carrusel-imagen .information h3 {
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.carrusel-imagen .information button {
  background-color: rgba(132, 63, 146, 0.0);
  font-family: Arial, sans-serif;
  border: 3px solid white;
  color: white;
  padding: 12px 50px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.carrusel-imagen .information button:hover {
  background-color: rgba(0, 84, 89, 0.9);
}

/* ===== BOTONES DE NAVEGACIÓN ===== */

.carrusel-botones {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center; 
  justify-content: space-between;
  pointer-events: none;
}

.carrusel-botones button {
  background-color: transparent;
  pointer-events: all;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  color: white;

  font-size: 24px;
  line-height: 1;
  padding: 0;
  cursor: pointer;

  flex: 0 0 50px; /* evita deformaciones */
}

.p-carrusel{
  position: relative;
  text-align: center;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 991.98px) {

  .carrusel {
    aspect-ratio: 16 / 6; /* en vez de height fija */
  }

  .carrusel-imagen {
    flex: 0 0 50%;
  }

  .carrusel-imagen .information h3 {
    font-size: 18px;
  }

  .p-carrusel {
    font-size: 14px;
  }

  .carrusel-imagen .information button {
    font-size: 13px;
    padding: 7px 22px;
  }

  .carrusel-botones button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {

  .carrusel {
    aspect-ratio: 16 / 9; /* elimina height fija */
  }

  .carrusel-imagen {
    flex: 0 0 100%;
  }

  .carrusel-imagen .information h3 {
    font-size: 17px;
  }

  .p-carrusel {
    font-size: 13px;
  }

  .carrusel-imagen .information button {
    font-size: 12px;
    padding: 6px 20px;
  }

  .carrusel-botones button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* --------------------------------------------------------------------------"*/
/* --------------------------------------------------------------------------"*/
/* =====SESION RECORD===== */


  .record {
    background-image: url('images/index-inicio/images/index/background.png ');
    background-position: center 30%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #009ca3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 500px;
    padding: 60px 40px;
    box-sizing: border-box;

    gap: 40px;
  }

  /* ===== IMAGEN ===== */
  .image-section {
    width: 600px;          /* ancho fijo estable */
    flex: 0 0 600px;       /* no crece, no se encoge */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-section img {
    width: 800px;          /* tamaño fijo real */
    height: auto;
  }

  /* ===== TEXTO ===== */

  .text-section {
    width: 650px;      /* ancho fijo */
    flex: 0 0 650px;   /* no crece, no se encoge */
    align-items:flex-start  ;
  }


  /* ===== TÍTULOS ===== */

  .text-section h1 {
    margin: 30px 0 10px 0;
    color: white;
    letter-spacing: -1px;
    font-size: clamp(28px, 2.5vw, 40px);
    font-family: Arial, sans-serif;
    transform: scaleY(1.2);
    font-weight: 100;
    text-shadow: 4px 4px 0px rgba(0, 84, 89, 0.9);
  }


  .text-section h2 {
    margin: 0 0 10px 0;
    font-family: Arial, sans-serif;
    color: #f7aa00;
    text-shadow: 6px 6px 0px rgba(0, 84, 89, 0.9);
    font-size: 70px;
    font-weight: bold;
    letter-spacing: 1px;
    transform: scaleY(1.2) translateX(-80px); 
  }

  .text-section h3 {
    margin-top: 10px;
    color: white;
    font-size: clamp(24px, 2.2vw, 40px);
    font-family: Arial, sans-serif;
    transform: scaleY(1.2);
    font-weight: 100;
    text-shadow: 4px 4px 0px rgba(28, 34, 34, 0.9);
  }

  /* ===== CONTENEDOR BLANCO ===== */

  .container-record {
    background-color: white;
    border-radius: 50px;
    width: 100%;
    max-width: 500px;   
    padding: 40px;
    margin-top: 40px;
    box-sizing: border-box;
  }

  /* ===== PÁRRAFO ===== */

  .text-section p {
    margin-top: 0;
    color: #005459;
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.5;
    font-family: Arial, sans-serif;
    text-align: justify;
    text-justify: inter-word;
  }

  /* ===== BOTÓN ===== */

  .container-record button {
    display: block;
    margin: 30px auto 0 auto;
    background-color: #f7aa00;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 15px 50px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .container-record button:hover {
    background-color: #005459;
  }

  /* --------------------------------------------------------------------------"*/
  /*RESPONSIVE"*/
  /* --------------------------------------------------------------------------"*/



@media (max-width: 991.98px) {

  .record {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 40px 30px;
  }

  .record-wrapper{
  width: 100%;
  max-width: 1200px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  }

  /* ===== IMAGEN ===== */

 .image-section {
  width: 46%;
  flex: 0 0 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  }

  .image-section img {
  width: 140%;
  max-width: none;
  }

  /* ===== TEXTO ===== */
  .text-section h1 {
    text-shadow: 2px 2px 0px rgba(28, 34, 34, 0.9);
    font-size: 20px;
  }
  .text-section h2 {
    text-shadow: 4px 4px 0px rgba(28, 34, 34, 0.9);
    font-size: 40px;
    transform: scaleY(1.2) translateX(-150px); 
  }
  .text-section h3 {
    text-shadow: 2px 2px 0px rgba(28, 34, 34, 0.9);
    font-size: 20px;
  }


  /* ===== CONTENEDOR BLANCO ===== */

  /* ===== CONTENEDOR BLANCO ===== */

  .container-record{
  width: 350px;
  max-width: 360px;
  padding: 20px;
  border-radius: 35px;
  box-sizing: border-box;

  margin-right: 30px; /* espacio hacia la derecha */

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  }

  /* ===== TEXTO ===== */

  .container-record p{
  font-size: 14px;   /* 🔥 sin clamp */
  line-height: 1.5;
  }

   /* ===== BOTÓN ===== */

  .container-record button{
  font-size: 14px;   /* 🔥 sin clamp */
  padding: 10px 30px;
  }

}

@media (max-width: 575.98px) {

  .record {
    background-size: cover; 
    background-position: center center;
    background-attachment: scroll; 
    height: 380px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 30px 20px;
    
  }



  /* ===== IMAGEN ===== */

  .image-section {
  width: 40%;
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  }

 .image-section img {
  width: 100%;
  max-width: none;
  transform: scale(1.7); 
  }

  /* ===== TEXTO ===== */

  .text-section{
  width: 55%;
  flex: 0 0 55%;
  max-width: 240px;
  text-align: left;
  text-align: left;

  margin-left: 20px; /* 🔹 mueve los títulos a la derecha */
  }

  .text-section h1,
  .text-section h2,
  .text-section h3 {
  margin: 5px 0;       /* espacio entre títulos */
  line-height: 1.2;
  width: 100%;         /* ocupan todo el ancho del contenedor */
  transform: none;
  text-align: left;    /* 🔹 asegura que estén a la izquierda */
  }

  .text-section h1 {
  font-size: 11px;
  text-shadow: 1px 1px 0 rgba(28,34,34,.9);
  }

  .text-section h2 {
  font-size: 18px;
  text-shadow: 2px 2px 0 rgba(28,34,34,.9);
  margin-left: 0;      /* 🔹 eliminamos cualquier desplazamiento */
  }

  .text-section h3 {
  font-size: 11px;
  text-shadow: 1px 1px 0 rgba(28,34,34,.9);
  margin-left: 0;      /* 🔹 también alineado */
  }


  /* ===== CONTENEDOR BLANCO ===== */

 .container-record {
  width: 100%;
  max-width: 230px; 
  max-height: 130px;   
  padding: 15px;
  border-radius: 25px;
  box-sizing: border-box;

  margin-left: -10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  }

  .container-record p {
  font-size: clamp(8px, 0.5vw, 10px);
  line-height: 1.4;
  word-wrap: break-word;   
  }

  .container-record button {
  font-size: clamp(6px, 1.5vw, 8px);
  padding: 8px 20px;
  max-width: 100%; 
  margin-top:-10px;        
  }

}

/* --------------------------------------------------------------------------"*/
/*CONTENEDORINFORMACION DESCUBRE LOS MEJORES PROFESIONALES"*/
/* --------------------------------------------------------------------------"*/

.container-info {
  position: relative;
  min-height: 600px;
  padding: 40px 5%; 
}

/* ===== TITLE ===== */

.container-info .title {
  position: absolute;

  top: 200px;

  left: 50%;                    
  transform: translateX(-50%); 

  font-family: Arial, sans-serif;
  font-weight: 700;
  color: #009ca3;

  font-size: clamp(80px, 5vw, 100px);
  line-height: 1.1;

  max-width: 900px;
  width: 90%;

  text-align: left;  /* mantiene texto alineado interno */
}

/* ===== TEXTO HOVER ===== */

.container-info .default-text,
.container-info .hover-text {
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.3s ease;
}

.container-info .hover-text {
  opacity: 0;
}

.container-info .title:hover .default-text {
  opacity: 0;
}

.container-info .title:hover .hover-text {
  opacity: 1;
}

.container-info img {
  position: absolute;
  top: 0;
  right: 0;          /* 🔥 pegada real al borde */

  margin: 0;
  padding: 0;

  width: clamp(630px, 40vw, 670px);
  height: auto;

  z-index: 999;
  pointer-events: none;
}
 /* ===================================================== */
/* RESPONSIVE*/

@media (max-width: 991.98px) {
  .container-info {
    min-height: 400px;
    padding: 30px 5%;
  }

  .container-info .title {
    top: 100px;
    font-size: clamp(50px, 6vw, 80px);
    left: 20%;
    transform: translateX(-40%);
    text-align: left; 

  }

  .container-info img {
    width: clamp(400px, 35vw, 600px);
    
  }

  .container-info .default-text,
  .container-info .hover-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  /* Animación infinita cada 5 segundos */
  @keyframes toggleText {
    0%, 45% { opacity: 1; }   /* default-text visible */
    50%, 95% { opacity: 0; }  /* default-text desaparece */
  }

  @keyframes toggleHover {
    0%, 45% { opacity: 0; }   /* hover-text invisible */
    50%, 95% { opacity: 1; }  /* hover-text visible */
  }

  .container-info .default-text {
    animation: toggleText 10s infinite;  /* 10s total = 5s visible cada texto */
  }

  .container-info .hover-text {
    animation: toggleHover 10s infinite;
  }
}
@media (max-width: 575.98px) {
  .container-info {
    min-height: 300px;
    padding: 20px 5%;
  }

  .container-info .title {
    top: 70px;
    left: 30%;
    font-size: clamp(20px, 6vw, 40px);
    transform: translateX(-50%);
  }

  .container-info img {
  width: clamp(300px, 4vw, 350px); 
 } 
}
 /* ===================================================== */
/* CONTENEDOR ICONOS - DESKTOP */
/* ===================================================== */

.container-icons {
  min-height: 450px;
  display: flex;
  justify-content: center;
  
  align-items: center;
  gap: 30px;
  padding: 120px 20px 60px 20px;
  align-items: stretch;
}

.container-icons .card {
  position: relative;
  background-color: #009ca3;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  width: 220px;
  padding: 80px 20px 20px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;             
  flex-direction: column; 
}

.container-icons .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.container-icons .card h3 {
  color: #f7aa00;
  position: relative;   
  top: -20px;           
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 700;
}

.container-icons .card p {
  color: white;
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.container-icons .card img {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
}


/* ===================================================== */
/* FOOTER - DESKTOP */
/* ===================================================== */

.footer {
  background-color: #1d687a;
  font-family: Arial, sans-serif;
  padding: 80px 40px;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links p {
  margin: 5px 0;
  font-size: 16px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icons img {
  width: 100px;
}


/* ===================================================== */
/* RESPONSIVE FOOTER HE ICONS
/* ===================================================== */

@media (max-width: 991.98px) {

  .container-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;

    max-width: 800px;
    margin: 0 auto;
  }
  .container-icons .card:nth-child(3),
  .container-icons .card:nth-child(4) {
  margin-top: 40px; 
  }

  .container-icons .card {
    width: 220px;
  }


  .container-icons .card img {
    width: 100px;
  }

  .footer {
    padding: 60px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-icons {
  justify-content: center;
  position: relative;
  top: 30px; 
}
.footer-icons img{
    width: 80px; 
  }
}

@media (max-width: 575.98px) {

  .container-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px 40px 20px;
}

.container-icons .card {
  width: 220px;
  padding: 70px 20px 20px 20px;
  margin-bottom: 50px; 
}

.container-icons .card:last-child {
  margin-bottom: 0; 
}

.container-icons .card h3 {
  font-size: 15px;
}

.container-icons .card p {
  font-size: 14px;
}

.container-icons .card img {
  width: 90px;
  top: -90px;
}

  .footer {
    padding: 50px 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }


  .footer-icons img {
    width: 60px;
  }
}
