
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: black;
    z-index: 9999;
    height: 100px;
}

/* ====== COMPENSAR HEADER FIJO ====== */
body {
    background-color: white;
    padding-top: 100px;
    min-height: 100vh;
    color: white;
}

.whatsapp-float{
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    box-shadow: 1px 1px 1px #314652;
    z-index: 100;
}

.whatsapp-float img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}


/* ====== LOGO ====== */
.logo {
    height: 60px;
    width: auto;
}

/********************Menu******************/

.nav-list{
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list li a{
    text-decoration: none;
    color: white;
}

/* Menú de navegación */
.navbar-links {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}
.nav-list li a:hover {
    color: orange;
}

/* ====== ENLACE ACTIVO ====== */
nav a.active {
    color: #d95514 !important;
    font-weight: 600;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-family: 'Lucida Sans', sans-serif;
    font-size: 20px;
    transition: color 0.3s;
    padding: 10px;
    text-align: left;
}

.navbar-links a:hover {
  color: orange;
}

.Abrir-menu,
.Cerrar-menu
{
    display: none;
}



.typed-cursor {
  color: white; /* Color del cursor */
  font-size: 24px;
  opacity: 1;
}

/********************Menu******************/

.nav-list{
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list li a{
    text-decoration: none;
    color: white;
}

/* Menú de navegación */
.navbar-links {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}
.nav-list li a:hover {
    color: orange;
}

/* ====== ENLACE ACTIVO ====== */
nav a.active {
    color: #d95514 !important;
    font-weight: 600;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-family: 'Lucida Sans', sans-serif;
    font-size: 20px;
    transition: color 0.3s;
    padding: 10px;
    text-align: left;
}

.navbar-links a:hover {
  color: orange;
}

/********************Menu******************/

.nav-list{
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list li a{
    text-decoration: none;
    color: white;
}

/* Menú de navegación */
.navbar-links {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}
.nav-list li a:hover {
    color: orange;
}

/* ====== ENLACE ACTIVO ====== */
nav a.active {
    color: #d95514 !important;
    font-weight: 600;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-family: 'Lucida Sans', sans-serif;
    font-size: 20px;
    transition: color 0.3s;
    padding: 10px;
    text-align: left;
}

.navbar-links a:hover {
  color: orange;
}


.location-icon {
    color: #FF5252;
    margin-right: 10px;
    font-size: 18px;
    cursor: pointer;
}
.location-link {
    text-decoration: none;
    color: inherit;
}


/* Estilos para la clase .h */
.h {
    text-align: center;
    margin: 10px 0;
    color: black;
}
/* Estilos específicos para los h6 dentro de .h */
.h h6 {
    text-align: center;
    margin: 5px 0;
    font-weight: normal;
}

/* Estilos específicos para cada h6 individual si necesitas diferenciarlos */
.h h6.uno {
    font-size: 14px;
    padding-left: 30px;
}

.h h6.dos {
    font-size: 14px;
    margin-top: 8px;
}

/* Estilos para el h3 dentro de .h */
.h h3 {
    text-align: center;
    margin-bottom: 15px;
}
.logo-footer{
    width: 100%;
    height: auto;
    padding-left: 20px;
}


.texto-encima {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 15px;
    font-family: 'Verdana', sans-serif;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/* ====== DROPDOWN PARA DESKTOP ====== */
.dropbtn {
    background-color: rgba(53, 141, 196, 1);
    color: white;
    padding: 8px 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.dropbtn:hover {
    background-color: rgba(217, 85, 20, 1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 160px;
    z-index: 1001;
    right: 0;
    top: 100%;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.dropdown-content a {
    color: white !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px !important;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(217, 85, 20, 1);
    color: white !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Estructura del footer como grid */
.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 30px;
    width: 100%;
    background: radial-gradient(circle, rgba(217, 85, 20, 1) 47%, rgba(4, 2, 15, 1) 100%);
}

/* Colocar los íconos en la tercera columna */
.footer-iconos {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding-top: 10px;
    grid-column: 3;
    padding-right: 20px;
}

/* Estilos para los íconos individuales */
.footer-iconos a {
    text-decoration: none;
    font-size: 28px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #314652;
    color: #f1f1f1;
    border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease-in-out;
}

/* Efecto al pasar el cursor */
.footer-iconos a:hover {
    transform: scale(1.2);
}

/* Efecto al pasar el cursor */
.footer-iconos a:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 960px) {
    /* Menú móvil centrado */
    .Abrir-menu,
    .Cerrar-menu {
        display: block;
        border: 0;
        font-size: 1.25rem;
        background-color: transparent;
        cursor: pointer;
        color: white;
    }
    
    .nav {
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.95);
    z-index: 999;
    overflow-y: auto; /* Scroll vertical */
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    width: 100%;
    min-height: min-content; /* Permite que crezca según el contenido */
  }

    .nav.visible {
        opacity: 1;
        visibility: visible;
    }
    

    .nav-list li a {
        color: white;
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .Cerrar-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }

    /* Dropdown para móviles - OCULTO INICIALMENTE */
    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none; /* OCULTO INICIALMENTE */
        position: static;
        background-color: transparent;
        box-shadow: none;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown-content.mobile-visible {
        display: block !important; /* VISIBLE SOLO CON CLICK */
    }

    .dropdown-content a {
        padding: 10px 15px;
        font-size: 1rem !important;
        color: #ccc !important;
        border-left: 2px solid #d95514;
        margin: 5px 0;
    }

    .dropdown-content a:hover {
        background-color: transparent !important;
        color: white !important;
    }

    /* Ocultar el botón ▼ en móviles */
    .dropbtn {
        display: none;
    }

    /* Footer para móviles */
    .footer {
        grid-template-columns: 1fr;
    }

    .footer > div:not(.footer-iconos) {
        display: none;
    }

    .footer-iconos {
        grid-column: 1;
        justify-content: center;
        width: 100%;
    }
}    
    