@charset "utf-8";
/* CSS Document */
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}

/* Menú Flotante */
.floating-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #007BFF;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.floating-menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.floating-menu .menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.floating-menu .menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.floating-menu .menu a:hover {
    text-decoration: underline;
}

.floating-menu .phone-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-menu .phone-link i {
    font-size: 1.2rem;
}

/* Sección Inicio */
.inicio {
    position: relative;
    text-align: center;
    color: white;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra para mejorar la legibilidad */
}

.inicio img {
    width: 100%;
    height: auto;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo-container .logo {
    width: 220px;
    height: 220px;
}

.contenido-inicio {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contenido-inicio h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contenido-inicio p {
    font-size: 1.5rem;
}

/* Sección Servicios */
.servicios {
    padding: 50px 20px;
    background-color: #fff;
}

.servicios h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contenedor-servicios {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.servicio {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.servicio img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.servicio h3 {
    margin: 15px 0;
    font-size: 1.5rem;
}

.servicio p {
    font-size: 1rem;
}

/* Sección Nosotros */
.nosotros {
    padding: 50px 20px;
    background-color: #eef;
}

.nosotros h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contenedor-nosotros {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contenedor-nosotros img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.texto-nosotros {
    max-width: 500px;
    text-align: left;
}

/* Sección Contacto */
.contacto {
    padding: 50px 20px;
    background-color: #fff;
}

.contacto h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contenedor-contacto {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.imagenes-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imagenes-contacto img {
    width: 214px;
    height: 150px;
    border-radius: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #0044cc;
    font-size: 1.5rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #003399;
}

.imagen-contacto img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

/* Pie de Página */
footer {
    background-color: #007BFF;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
