/* ----------------------------- */
/* 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,
.login-btn, .member-btn {
    margin: 0 auto;
    padding: 12px 30px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.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;
}

/* Botones del header */
.login-btn {
    background-color: #00b4ff;
    color: #050a32;
    margin-right: 10px;
}

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

.member-btn {
    background-color: transparent;
    color: #00b4ff;
    border: 2px solid #00b4ff;
}

.member-btn:hover {
    background-color: #00b4ff;
    color: #050a32;
}

/* ----------------------------- */
/* 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 botones */
.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;
}

/* Contenedor de botones de login */
.login-buttons {
    display: flex;
    align-items: center;
}

/* ----------------------------- */
/* 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;
        margin-bottom: 20px;
    }

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

    .login-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .login-btn, .member-btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}

/* ----------------------------- */
/* 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 {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
}

footer p {
    margin: 0;
    font-size: 12px;
}

/* ----------------------------- */
/* 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;}
}