/* ----------------------------- */
/* Slider                        */
/* ----------------------------- */

#portada {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    padding: 0 5%;
    background-color: #1e286e;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: grayscale(100%);
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.75;
    z-index: 2;
}

/* Estilos para el contenedor del contenido de la portada */
.portada-contenido {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Ajusta el ancho máximo según sea necesario */
    margin: 0 auto;
    padding-top: 100px;
}

/* Estilos para el título */
#portada h1 {
    font-size: 3em;
    margin-bottom: 20px; /* Espacio entre el título y el párrafo */
    color: #fff;
}

#portada h1 span.domain {
    color:#00b4ff;
}

/* Estilos para el párrafo */
.portada-subtitulo {
    font-size: 1em;
    color: #cccccc;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 auto; /* Centrar el párrafo */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    #portada h1 {
        font-size: 1.4em; /* Reducir el tamaño del título en móviles */
    }

    .portada-subtitulo {
        font-size: 1em; /* Reducir el tamaño del párrafo en móviles */
    }
}

/* ----------------------------- */
/* Contacto                      */
/* ----------------------------- */

#contacto {
    padding: 40px 25%;
    background-color: #050a32;
}

.contacto-grid {
    display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 20px;
      margin-bottom: 20px;
    }

.columna-contacto {
    flex: 1;
    text-align: center;
    padding-bottom: 30px;
}

.columna-contacto img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
}

.columna-contacto i {
    font-size: 30px;
    color: #00c8ff;
    margin-bottom: 10px;
}

.columna-contacto p {
    font-size: 18px;
    color: #ffffff;
}

@media (max-width: 768px) {
    #contacto {
        padding: 40px 5%;
    }
    .contacto-grid {
      grid-template-columns: 1fr;
    }
}





