/* === RESETEO BÁSICO === */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* ======== HEADER Y NAVBAR ======== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 1rem 2rem;
    color: white;
    position: relative;
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo img {
    height: 40px;
}

.navbar-menu {
    display: flex;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-links li a:hover {
    color: #f0c040;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: white;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    width: 25px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

@media (max-width: 1024px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: #111;
        padding: 1rem 2rem;
    }

    .navbar-menu.show {
        display: flex;
    }

    .navbar-links {
        flex-direction: column;
        gap: 1rem;
    }
}




/*fotter */


footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0a2239;
  color: white;
}

.contact-buttons {
  display: flex;
  justify-content: center; /* Centra los botones horizontalmente */
  flex-wrap: wrap;         /* Permite que se acomoden en varias líneas si es necesario */
  gap: 1rem;               /* Espacio entre botones */
  margin-bottom: 1rem;
}

.contact-buttons a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

/* WhatsApp */
.whatsapp-button {
  background-color: #25d366;
}

.whatsapp-button:hover {
  background-color: #1ebc59;
}

/* Correo */
.email-button {
  background-color: #0072c6;
}

.email-button:hover {
  background-color: #005a9e;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0a2239;
  color: white;
}

.contact-buttons {
  display: flex;
  justify-content: center; /* Centra los botones horizontalmente */
  flex-wrap: wrap;         /* Permite que se acomoden en varias líneas si es necesario */
  gap: 1rem;               /* Espacio entre botones */
  margin-bottom: 1rem;
}

.contact-buttons a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

/* WhatsApp */
.whatsapp-button {
  background-color: #25d366;
}

.whatsapp-button:hover {
  background-color: #1ebc59;
}

/* Correo */
.email-button {
  background-color: #0072c6;
}

.email-button:hover {
  background-color: #005a9e;
}

