/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
}

/* Estilo del encabezado */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background-color: #2D6AED;
border-bottom: 1px solid #ddd;
flex-wrap: wrap;
}

.logo{
    display: flex;
    flex-direction: column;     /* Apila verticalmente: imagen arriba, texto abajo */
    align-items: center;        /* Centra horizontalmente */
    text-align: center;         /* Centra el texto si ocupa más de una línea */
    gap: 5px;                   /* Espacio entre imagen y texto */
}
/* Logotipo */
.logo img {
height: 60px;
background: transparent;
}

/* Menú principal */
nav {
flex-grow: 1;
text-align: center;
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 20px;
}

nav ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
transition: color 0.3s ease;
}

nav ul li a:hover {
color: #15d7bd;
}

/* Redes sociales */
.social-icons a {
margin-left: 15px;
font-size: 20px;
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}

.social-icons a:hover {
color: #15d7bd;
}

/* Responsive */
.menu-toggle {
display: none;
font-size: 24px;
cursor: pointer;
}

@media (max-width: 768px) {
nav {
    width: 100%;
    order: 3;
}

nav ul {
    flex-direction: column;
    display: none;
    margin-top: 10px;
}

nav ul.active {
    display: flex;
    color: aquamarine;
}

.menu-toggle {
    display: block;
}

.social-icons {
    order: 2;
    margin-left: auto;
}
}
header {
    flex-direction: row;
}
  /* Estilos para el pie de página */
    footer {
    background-color: #2D6AED;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    bottom: 0;
    width: 100%;
    }

    footer .direccion {
    font-size: 14px;
    }

    footer .copyright {
    font-size: 13px;
    margin-top: 5px;
    background-color: #2D6AED;
    }

/* contenido */
#servicios{
    background-image: url(/imagenes/imagendefondo.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#servicios h1,
#servicios h2,
#servicios h3,
#servicios h4 {
    text-align: center;
}

.servicios-container {
    padding: 2rem;
    background-color: #f9f9f9;
}
.servicios-titulo {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.servicio-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.servicio-item h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}
.servicio-item p {
    margin-top: 0.5rem;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .servicios-titulo {
    font-size: 1.5rem;
    }
}
