
/* Grid para las tarjetas de información */
.praedium-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}


/* Contenedor del banner */
.banner-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
  }
  
  /* Imagen del banner */
  .seccion-banner {
    width: 100%;
    height: auto;
    display: block;
    max-height: 250px; /* Ajusta según el tamaño que necesites */
    object-fit: cover; /* Mantiene la proporción de la imagen */
  }


/* Estilos para las tarjetas de información */
.info-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    padding: 2rem;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-header {
    color: #005580;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #005580;
}

.card-content {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Iconos de las tarjetas */
.icon-container {
    position: absolute;
    top: 0.3rem; /* Posición más arriba */
    right: 1rem;
    opacity: 0.9;
}

.info-icon {
    width: 60px;
    height: 60px;
    opacity: 1;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}
/* Lista de valores */
.valores-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.valores-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Título de asociaciones */
.asociaciones-title {
    color: #005580;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Ajustes para el texto destacado */
.nosotros-text strong {
    color: #005580;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .praedium-info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .card-header {
        font-size: 1.2rem;
        margin-right: 65px; /* Ajuste para móviles */
    }
    
    .icon-container {
        top: -0.3rem; /* Posición para móviles */
        right: 0.8rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }

    .seccion-banner {
        max-height: 100px;
      }
}
______________________

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: Arial, sans-serif;
}

/* Header y Logo */
.header {
    display: flex;
    justify-content: flex-start; /* Logo a la izquierda */
    align-items: center;
    padding: 0.5rem 2rem;
    background: white;
    height: 80px; /* Altura fija para el header */
}

.logo {
    max-width: 150px; /* Tamaño del logo */
    padding: 0;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Navegación */
.nav {
    background: #444;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around; /* Distribuye los elementos uniformemente */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem; /* Añade espacio entre los elementos */
}

.nav li {
    text-align: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 80%;
}

.hero {
    position: relative;
    width: 100vw; /* Asegura que ocupe todo el ancho */
    height: 400vh; /* Ajusta la altura según tus necesidades */
    overflow: hidden; /* Oculta cualquier parte de la imagen que sobresalga */
}

.hero-image {
    width: 100vw; /* Asegura que la imagen ocupe todo el ancho */
    height: 100vh; /* Asegura que la imagen ocupe toda la altura */
    object-fit: cover; /* Recorta la imagen para que se ajuste al contenedor */
    object-position: center; /* Centra la imagen dentro del contenedor */
}
.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alineación a la izquierda */
    padding-left: 10%; /* Espacio desde la izquierda */
}

.hero-text {
    color: white;
    font-size: 4rem; /* Texto más grande */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para mejorar legibilidad */
}
.footer {
    background: #444;
    color: white;
    padding: 3rem 2rem;
}


.footer-section {
    flex: 1;
    padding: 0 10px;
    min-width: 250px;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-slogan {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu {
    list-style: none;

}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-section:nth-child(3) {
    text-align: left; /* Asegura que el texto esté alineado a la derecha */
    margin-left: 80px; /* Alinea el título con el resto del texto */

}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #005580;
}

/* Botones flotantes - Ajustados para que se vean como en la imagen */
.float-button {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 100px; /* Posición más alta */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    z-index: 1001;
    transition: all 0.3s ease;
}

.whatsapp {
    background-color: #25d366;
    left: 30px; /* Más cerca del borde */


}

.contact {
    background-color: #0088cc; /* Color azul para el botón de casa */
    right: 30px; /* Más cerca del borde */
}

.float-button img {
    width: 7px;
    height: 7px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        justify-content: center;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        text-align: center !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ajustes específicos para el header y el footer */
.header, .footer {
    min-height: auto; /* No ocupa el 100% del viewport */
}

/* Ajustes para el hero section */
.hero {
    height: 100vh; /* Ocupa el 100% del viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: flex-start; /* Cambiado de space-between a flex-start */
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Añadido para dar un efecto sutil de elevación */
}

.logo {
    max-width: 100px; /* Ajusta este valor según el tamaño que desees */
    padding: 0.5rem 0;
}

.logo img {
    width: 100%;
    height: auto; /* Cambiado de height fijo a auto para mantener la proporción */
    object-fit: contain; /* Asegura que la imagen se ajuste correctamente */
    display: block; /* Elimina espacio extra debajo de la imagen */
}


/* Navegación */
.nav {
    background: #444;
    padding: 1rem 2rem;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('C:\Users\Dell\Documents\Borrador\Fotos e íconos\1 nosotros banner a.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-text {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Botones flotantes */
.float-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.whatsapp {
    background-color: #25d366;
    left: 40px;
}

.contact {
    background-color: #0088cc;
    right: 40px;
}
.servicios {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #f5f7fa;
}

.servicios-titulo {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
    position: relative;
}

.servicios-titulo::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url('') no-repeat center;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Modificación para que el elemento de Complementarios ocupe más espacio */
.servicios-grid .servicio-card:nth-child(5) {
    grid-column: span 2; /* Hace que ocupe dos columnas */
}

.servicio-icon {
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 80px;
    height: 80px;
    opacity: 0.4; /* Reducido de 0.8 para que esté más apagado */
    filter: grayscale(50%); /* Convertir a escala de grises */
}

.servicio-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    min-height: 200px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Efecto hover para la tarjeta */
.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Modificado efecto hover para el icono - mantenemos grayscale pero aumentamos opacidad */
.servicio-card:hover .servicio-icon {
    transform: scale(1.1);
    opacity: 0.6;
}

.servicio-titulo {
    color: #005580;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #005580;
}

.servicio-lista {
    list-style: none;
    padding: 0;
}

.servicio-lista li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.servicio-lista li::before {
    content: '•';
    color: #005580;
    position: absolute;
    left: 0;
}

/* Estilo específico para la lista de complementarios para mejorar la distribución */
.servicios-grid .servicio-card:nth-child(5) .servicio-lista {
    column-count: 2; /* Divide la lista en dos columnas */
    column-gap: 2rem;
}

html {
    scroll-behavior: smooth;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nosotros {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.nosotros-content {
    flex: 1;
}

.nosotros-logo {
    flex: 0 0 300px;
    text-align: center;
}

.nosotros-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.section-title {
    color: #005580;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.nosotros-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slogan {
    color: #005580;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.asociaciones {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding: 2rem;
    background: #f5f7fa;
    border-radius: 8px;
}

.asociacion-logo {
    height: 80px;
    width: auto;
}

/* Botones flotantes */
.float-button {
    position: fixed;
    bottom: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.float-button:hover {
    transform: scale(1.1);
}

.whatsapp {
    left: 40px;
    background-color: #25d366;
}

.contact {
    right: 40px;
    background-color: #005580;
}

.float-button img {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .nosotros {
        flex-direction: column;
    }

    .asociaciones {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}
.equipo {
    padding: 5rem 0;
}

.equipo-header {
    position: relative;
    height: 300px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('images/banners/banner-equipo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.equipo-title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.equipo-descripcion {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.equipo-descripcion strong {
    color: #005580;
}

.equipo-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.miembro-card {
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1.5rem;
    min-height: 550px; /* ← Más alto para mejor presentación */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.miembro-card:hover {
    transform: translateY(-5px);
}

.miembro-imagen {
    width: 100%;
    height: 400px; /* ← Imagen más alta */
    object-fit: cover;
    margin-bottom: 1rem;
}

.miembro-nombre {
    color: #005580;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.miembro-puesto {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .equipo-header {
        height: 200px;
    }

    .equipo-title {
        font-size: 2rem;
    }

    .equipo-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Ajusta este valor según la altura de tu header fijo */
}

/* Estilos para la navegación */
.nav {
    background: #444;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
}

/* Efecto hover para los enlaces */
.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .nav ul {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.8rem;
    }
}

/* Aseguramos que todas las secciones tengan suficiente padding */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Ajustamos el scroll para los botones flotantes */
.float-button {
    z-index: 1001; /* Asegura que estén por encima de la navegación */
}
@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-grid .servicio-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .servicios-grid .servicio-card:nth-child(5) .servicio-lista {
        column-count: 1;
    }
}
 /* Footer Styles */
 .footer {
    background: #444;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    padding: 0 10px;
}

.footer-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #005580;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}

/* Botones flotantes */
.float-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1001;
}

.whatsapp {
    background-color: #25d366;
    left: 40px;
}

.contact {
    background-color: #0088cc;
    right: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav ul {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.8rem;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        text-align: center !important;
    }

    .nosotros {
        flex-direction: column;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}