/* ----------------------------- */
/* Estilos Generales             */
/* ----------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

h1,h2,h3 {
    font-family: 'Ubuntu', sans-serif;
}

h1 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align:center;
    color:#00b4ff;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align:center;
    color:#141e64;
}

p, li {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

a {color:#00b4ff;text-decoration:none;}

strong {font-weight:bold;color:#00b4ff;}

/* ----------------------------- */
/* Botones                       */
/* ----------------------------- */

.ver-mas-btn,.ver-mas-btn-2 {
    margin: 0 auto;
    padding: 12px 30px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.ver-mas-btn {
    background-color: #00b4ff;
    color: #050a32;
}

.ver-mas-btn:hover {
    background-color: #ffffff;
}

.ver-mas-btn-2 {
    background-color: #050a32;
    color: #ffffff;
}

.ver-mas-btn-2:hover {
    background-color: #00b4ff;
}

/* ----------------------------- */
/* Header                        */
/* ----------------------------- */

header {display: flex;justify-content: space-between;align-items: center;padding: 10px 10%;background-color: #050a32;color: white;position: fixed;width: 100%;z-index: 1000;}

header .logo img {
    height: 24px;}

/* Botón de menú hamburguesa */
.menu-toggle {display: none;background: none;border: none;color: #00b4ff;font-size: 24px;cursor: pointer;}

/* Contenedor del menú y redes sociales */
.menu-container {display: flex;align-items: center;gap: 20px;}

/* Menú centrado en desktop */
header nav {position: absolute;left: 50%;transform: translateX(-50%);}

header nav ul {list-style: none;display: flex;gap: 20px;}

header nav ul li {margin-bottom: 0px;font-family: 'Ubuntu', sans-serif;}

header nav ul li a {color: #00b4ff;text-decoration: none;font-weight: 700;font-size: 14px;transition: color 0.3s ease;}

header nav ul li a:hover {color: #ffffff;}

/* Íconos sociales a la derecha */
header .social-icons {margin-left: auto;}

header .social-icons a {color: #00b4ff;margin: 0 0 0 10px;font-size: 18px;transition: color 0.3s ease;}

header .social-icons a:hover {color: #ffffff;}

/* ----------------------------- */
/* Estilos Responsive            */
/* ----------------------------- */

@media (max-width: 1200px) {
    header {padding: 10px 50px;}
}

@media (max-width: 768px) {
    header {padding: 12px 20px;}

    .menu-toggle {display: block;}

    .menu-container {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #050a32;
        position: absolute;
        top: 48px;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu-container.active {
        display: flex;
    }

    header nav {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header .social-icons {
        margin-left: 0;
        text-align: center;
    }
    
    header .social-icons a {margin: 0 5px 0 5px;}
}

/* ----------------------------- */
/* Footer                        */
/* ----------------------------- */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

footer {
    z-index: 9999;
    /*position: fixed;*/
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
}

footer p {
    font-size:12px;
}