@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: white;
    padding: 10px 0;
    text-align: center;
}

.logo img {
    width: 15%;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    background-color: #0056b3;
    padding: 10px 20px;
    border-radius: 10px; /* Esquinas más redondeadas */
    border: 2px solid #0000ff; /* Borde más notorio */
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

nav ul li a:hover {
    background-color: #404075b6;
    color: white;
}

.privacy {
    background-color: white;
    color: #0056b3;
    display: flex;
    align-items: center;
}

.acreditaciones {
    background-color: white;
    color: #0056b3;
}

.privacy .lock-icon {
    margin-right: 5px;
}

.flyers {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px; /* Añadir margen inferior para separar secciones */
}

.carousel {
    width: 50%;
    margin: 0 auto;
    height: 150px; /* Altura ajustada */
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta las imágenes al contenedor */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.info {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.text-box, .video-box {
    width: 48%;
}

.text-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-box h2 {
    color: #000080;
    margin-bottom: 10px;
}

.video-box iframe {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.values {
    padding: 20px;
    text-align: center;
}

.values h2 {
    margin-bottom: 20px;
    color: #000080;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.value-item {
    width: 120px; /* Tamaño ajustado para hacer los círculos más grandes */
    height: 120px; /* Tamaño ajustado para hacer los círculos más grandes */
    border-radius: 50%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styles for the services.html page */
.services-intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f0f0;
  }
  
  .services-intro h1 {
    color: #000080;
    margin-bottom: 20px;
  }
  
  .services-intro p {
    font-size: 1.2em;
  }
  
  .services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .service {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
  }
  
  .service h2 {
    color: #000080;
    margin-bottom: 10px;
  }

footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 10px 0;
}

.pdf-viewer {
    padding: 20px;
    text-align: center;
}

.pdf-viewer iframe {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

footer p {
    color: #333;
}

/* Media queries para dispositivos móviles y tabletas */
@media (max-width: 1024px) {
    .logo img {
        width: 25%;
    }

    .carousel {
        width: 80%;
        height: auto; /* Ajustar altura automáticamente */
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

    .text-box, .video-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        width: 100px; /* Tamaño ajustado para dispositivos móviles */
        height: 100px; /* Tamaño ajustado para dispositivos móviles */
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 40%;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    nav ul li a {
        width: 100%;
        text-align: center;
    }

    .carousel {
        width: 100%;
    }

    .text-box, .video-box {
        width: 90%;
    }

    .value-item {
        width: 80px; /* Tamaño ajustado para dispositivos móviles */
        height: 80px; /* Tamaño ajustado para dispositivos móviles */
    }
}
