:root{
    --anaranjado: #ee6c4d;
    --negroClaro: #293241;
    --azulClaro: #e0fbfc;
    --azulMedio: #98c1d9;
    --azulGris: #3d5a80;

    --fuente:'Lato', sans-serif;
}





html {
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
*{
    margin: 0;
    padding: 0;
    font-family: var(--fuente);
}


/* logo fijo */

.fijo{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}
.fijo img{
    width: 4rem;
}
.fijo:hover{
    transform: scale(1.2);
    transition: all 0.4s ease-out;
}


.ventas {
    background-color: #457b9d;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem; /* Aumenté el padding para mejorar la apariencia en dispositivos más grandes */
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .ventas {
        flex-direction: column;
        align-items: center;
    }
}

.ventas__num,
.ventas__correo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ventas__num img,
.ventas__correo img {
    max-width: 2rem;
}

.ventas a {
    color: #fff;
    text-decoration: none;
}

.ventas__correo a:hover,
.ventas__num a:hover {
    color: #ee6c4d;
}

/* Añadí un poco de espacio entre los íconos y los textos */
.ventas__num h2,
.ventas__correo h2 {
    margin-left: 0.5rem;
}

/* Agregué un estilo más atractivo a los números de teléfono */
.ventas__num h2 a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
    transition: border-color 0.3s ease-in-out;
}

.ventas__num h2 a:hover {
    border-bottom: 1px dashed #ee6c4d;
}








.navegacion{
    background-color: var(--negroClaro);
    
    background-color: #edf2f4;
    max-width: 100vw;
    padding: 1rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 992px){
    .navegacion{
        flex-direction: row;
    } 
}

.logo img{
    width: 25rem;
    height: 6rem;
}

.enlaces{
    display: flex;
    flex-direction: column;
    row-gap: 0rem;
    text-align: center;
}
@media (min-width: 992px){
    .enlaces{
        flex-direction: row;
        column-gap: 1.5rem;
    } 
}

.enlaces a{
    color: var(--azulClaro);
    color: black;
    font-size: 1.8rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: var(--negroClaro);
    background-color: #edf2f4;
    border-radius: 15px;
}
@media (min-width: 992px){
    .enlaces a{
        font-size: 2.5rem;
    } 
}

.enlaces a:hover{
    background-color: var(--azulMedio);
    background-color: #457b9d;
    transition: all 0.3s ease;
    color: #FFF;
    
}

.hero{
    background-image: url(/img/header/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center ;
    height: 30rem;
   
}
@media (min-width: 992px){
    .hero{
        height: 60rem;
    } 
}


footer{
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}
@media (min-width: 992px){
    footer{
        font-size: 1.2rem;
    } 
}




body::-webkit-scrollbar {

    background: var(--azulMedio);
  }

  body::-webkit-scrollbar-thumb {
    background: #00a2ff;
    background: var(--negroClaro);
    
  }



/* Menú desplegable de los 2 giros */
  .dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  

  
  .dropdown:hover .dropdown-content {
    display: block;
  }