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

body {
  font-family: Arial, sans-serif;
}

header {
  background: #000;
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 180px;
}

.menu {
  list-style: none;
  display: flex;
  position: relative;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
}

.menu li a:hover {
  color: #f7a800;
}

.submenu ul, .submenu-interno {
  display: none;
  position: absolute;
  background: #111;
  width: 240px;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.submenu:hover > ul {
  display: block;
}

.submenu ul li {
  width: 100%;
}

.submenu ul li:hover > .submenu-interno {
  display: block;
  top: 0;
  left: 240px;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background: #000;
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .submenu ul, .submenu-interno {
    position: static;
  }
}

.privacy-policy {
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
}

.privacy-policy h1, .privacy-policy h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #2c7cad;
  font-weight: bold;
}

.privacy-policy h1 {
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
}

.privacy-policy h2 {
  font-size: 24px;
  border-bottom: 2px solid #2c7cad;
  padding-bottom: 5px;
}

.privacy-policy p, .privacy-policy ul {
  margin-bottom: 20px;
  font-size: 16px;
}

.privacy-policy ul {
  margin-left: 20px;
  list-style: disc;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 30px 10px;
  }

  .privacy-policy h1 {
    font-size: 28px;
  }

  .privacy-policy h2 {
    font-size: 20px;
  }

  .privacy-policy p, .privacy-policy ul {
    font-size: 14px;
  }
}

.info-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  font-size: 1.5rem;
}

.info-section .container {
  max-width: 900px;
  margin: auto;
}

.info-section .titulo-principal {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f7a800;
}

.info-section .motivos {
  margin-top: 20px;
}

.info-section .motivos h3 {
  margin-bottom: 15px;
  color: #fff;
}

.info-section .motivos ul {
  display: inline-block;
  text-align: left;
  list-style: square;
}

.info-section .motivos ul li {
  margin-bottom: 10px;
}

.info-section .footer-info {
  color: #f7a800;
  font-weight: bold;
  margin-top: 40px;
  font-size: 1.2rem;
}

.contact-options {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.contact-option {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 45%;
  text-align: center;
}

.contact-option h3 {
  color: #f7a800;
  margin-bottom: 15px;
}

.contact-option p {
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  background-color: #f7a800;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #d48c00;
}

@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
  }

  .contact-option {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer {
  background-color: #f0f0f0;
  padding: 40px 20px;
  font-size: 14px;
  color: #333;
}

.contenedor-footer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  flex: 1;
  min-width: 220px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 15px;
}

.footer-logo p {
  margin-bottom: 10px;
}

.footer-columna {
  flex: 1;
  min-width: 180px;
}

.footer-columna h4 {
  margin-bottom: 15px;
}

.footer-columna ul {
  list-style: none;
  padding: 0;
}

.footer-columna ul li {
  margin-bottom: 10px;
}

.footer-columna ul li a {
  color: #555;
  text-decoration: none;
}

.footer-columna ul li a:hover {
  text-decoration: underline;
}

/* Estilo del botón de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}

/* Styles for social media buttons */
.social-buttons {
  text-align: center;
  margin: 20px 0;
}

.social-button {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.social-button.instagram {
  background-color: #E1306C;
}

.social-button.facebook {
  background-color: #3B5998;
}

.social-button.whatsapp {
  background-color: #25D366;
}

.social-button:hover {
  opacity: 0.8;
}

/* Styles for social media buttons with icons */
.social-buttons {
  text-align: center;
  margin: 20px 0;
}

.social-button {
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-button img {
  width: 40px;
  height: 40px;
}

.social-button:hover {
  transform: scale(1.1);
}
