* {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.header {
    padding-top: 5px;
}

/* Menu Hamburguesa */

.navbar {
    background-color: white;
    color: black;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* cuando tengo una posicion relativa todos los demas elementos que esten en posicion absoluta toman posicion respecto del relative */
}

.logo {
    height: 55px;
    margin-left: 5rem;
}


.i {
    width: 40px;
    height: 40px;
}


.checkbox,
.icons {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
}

.icons {
    pointer-events: none;
    /* no se podra hacer click sobre ellos */
    font-size: 24px;
    /* para cambiar el tamaño de los iconos como si fuesen texto */


}

.checkbox {
    opacity: 0;
    /* hace que el checkbox no se vea pero siga extando disponible de forma oculta */
}

.fi-bi-x {
    display: none;
    /* hace que la X=icono cerrar originalmente aparezca oculta */
}

/* .checkbox:checked hace la logica. si el checkbox esta cliqueado entonces el menu no se muestra  */
.checkbox:checked~.fi-br-menu-burger {
    display: none;
}

/* .checkbox:checked hace la logica. si el checkbox esta cliqueado entonces se muestra el cerrar y se oculta el menu */
.checkbox:checked~.fi-bi-x {
    display: inline;
}

.menu {
    width: 200px;
    position: absolute;
    top: -250px;
    z-index: -1;
    /* sirve como capa, si el valor es negativo me lleva a la capa de atras, solo funciona para elementos que han modificado su position en absolute */
    right: 0;
    transition: 250ms;

}

.menu-icon {
    cursor: pointer;
    font-size: 24px;
    display: inline-block;
}

.menu li {
    list-style: none;
    /* sirve para quitarle los puntitos a la lista */
}

.menu li a {
    text-decoration: none;
    /* quita el subrayado del enlace */
    color: inherit;
    /* quita el color de "enlace" para darle estilo, inherit es para heredar un color predeterminado antes */
    background-color: white;
    display: block;
    /* ocupar todo el espacio con el color */
    padding: 10px 12px;
}


.menu li a:hover {
    background: linear-gradient(45deg, #4f5bd5, #962fbf, #d62976, #fa7e1e, #feda75);
    color: white;

}

.checkbox:checked~.menu {
    /*revisar funcionamiento*/
    top: 55px;
    z-index: 500;
    /* hace que al desplegarse se ponga sobre el contenido */
}

@media (min-width: 750px) {


    .checkbox,
    .fi-br-menu-burger,
    .fi-bi-x {
        display: none;
    }



    .menu {
        top: 0;
        z-index: 1;
        width: unset;
        display: flex;
        height: 48px;

    }

    .menu li a {
        height: 48px;
        padding: 14px 12px 6px;
    }
}


/* fin navbar */


.instagram-background {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #4f5bd5, #962fbf, #d62976, #fa7e1e, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    white-space: normal;

}

.banner {
    font-family: "Protest Strike", sans-serif;
    font-style: normal;
    color: white;
    font-size: clamp(1rem, 6vw, 5rem);
    /*clamp() permite establecer un tamaño de fuente dinámico que se ajusta entre un valor mínimo y máximo, según el ancho de la ventana. */
    text-align: center;
    text-shadow: 3px 3px 0px #ff0000;


}

.wordAktiva {
    font-family: "Protest Strike", sans-serif;
    display: inline-block;
    animation: pulse 1s ease-in-out 3 forwards;

}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.cards {
    background-color: white;
    width: 80%;
    height: 400px;
}

/*Carrousel descripcion empresa */

/* Slideshow container */
.slideshow-container {
    max-width: 70%;
    position: relative;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

/* Hide the images by default */
.mySlides {
    display: none;
    width: 100%;
}



/* Titulo Text */

.h2Carrousel {
    font-family: "Protest Strike", sans-serif;
    font-size: clamp(1rem, 6vw, 3rem);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/*fin Carrousel descripcion empresa */


/*Cards Servicios*/

/* section Cards - se utiliza tailwind para las tarjetas*/

/*fin Cards Servicios*/



/* footer */

.footer {
    background-color: #1877F2;
    color: white;
    text-shadow: #555;
    padding: 1rem;
    margin: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Se ajusta a la pantalla */
    gap: 20px; /* Espacio entre los divs */
    max-width: 1200px;
    margin: 0 auto; /* Centrar el contenido */
    
  }
  
  .footer-section {
    text-align: left;
  }
  
  .footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #feda75; /* Color de los títulos del footer */
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #feda75; /* Color de hover para los enlaces */
  }
  
  .footer-section p {
    margin: 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
  }
  
  .icon_rrss {
    width: 40px; /* Tamaño del icono */
    height: auto;
  }
  
  .icon_logo {
    width: 50px;
    height: auto;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    margin-top: 40px;
  }
  
  .social-icons {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: left;

  align-items: center;
  gap: 10px; /* Espacio entre los iconos */
  list-style: none; /* Elimina los puntos de la lista */
  padding: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem; /* Ajuste de padding en dispositivos móviles */
    }

    .footer-container {
        padding: 0 1rem; /* Añade espacio a los lados del grid */
    }
}


