/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Contenedor general */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo del header */
header {
    background-color: #085038;
    /* Naranja vibrante */
    color: white;
    padding: 50px 0;
    text-align: center;
}

header .logo {
    width: 150px;
    /* Ajusta el tamaño del logo */
    margin-bottom: 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.25rem;
}

/* Sección de Información */
.info {
    padding: 40px 0;
    text-align: center;
    background-color: #F5F5F5;
}

.info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.info p {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.service-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

/* Botón de WhatsApp */
.cta {
    padding: 40px 0;
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #fa7c06;
    /* Color de WhatsApp */
    color: white;
    font-size: 1.25rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    /* Hover de WhatsApp */
}

.whatsapp-icon {
    width: 25px;
    /* Ajusta el tamaño del icono de WhatsApp */
    margin-right: 10px;
}

/* Estilo del footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
    margin: 5px 0;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons .icon {
    display: inline-block;
    margin: 0 10px;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

footer .social-icons .icon:hover {
    color: #FF6F00;
    /* Naranja vibrante */
}

/* Responsividad */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .info h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .whatsapp-button {
        font-size: 1.125rem;
        padding: 12px 25px;
    }

    .whatsapp-icon {
        width: 20px;
    }

    .service-list {
        font-size: 0.9rem;
    }

    .informative-image {
        text-align: center;
        margin-bottom: 20px;
        /* Espaciado inferior para separar del título */
    }

    .info-img {
        max-width: 100%;
        /* Ajusta la imagen al ancho del contenedor */
        height: auto;
        /* Mantén las proporciones */
        border-radius: 8px;
        /* Opcional: bordes redondeados */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        /* Opcional: sombra para darle estilo */
    }
}