* {
    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;
    z-index: 1001;
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: #333; /* Temporary background for visibility */
    border: 2px solid #fff; /* Add border for debugging */
    padding: 5px;
  }
  
  @media (max-width: 768px) {
    header {
      padding: 10px 15px;
    }

    .menu-toggle {
      display: block; /* Ensure it's visible on small screens */
    }
  
    .menu {
      display: none; /* Initially hide the menu */
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 70px;
      left: 0;
      background: #000;
      z-index: 1000;
    }
  
    .menu.show {
      display: flex; /* Show the menu when toggled */
    }
  
    .menu li {
      width: 100%;
    }

    .submenu ul {
      position: static;
      background: #111;
    }

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

    .famosos {
      height: 300px;
    }

    .famosos-container {
      padding: 10px;
    }

    .texto-famosos h2 {
      font-size: 24px;
    }

    .texto-famosos p {
      font-size: 16px;
    }

    .accordion-layout {
      flex-direction: column;
    }

    .accordion-image-container,
    .accordion-items {
      max-width: 100%;
    }

    .expertos-ads .contenido-ads {
      flex-direction: column;
      text-align: center;
    }

    .imagen-ads img {
      width: 100%;
    }

    .texto-ads {
      max-width: 100%;
    }

    .video-seccion {
      flex-direction: column;
    }

    .texto-video,
    .contenedor-video {
      width: 100%;
    }

    .contact-options {
      flex-direction: column;
    }

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

    .footer .contenedor-footer {
      flex-direction: column;
      align-items: center;
    }

    .footer-columna {
      margin-bottom: 20px;
    }
  }
  .famosos {
    position: relative;
    background-image: url('assets/imagenes/1.png'); /* Actualiza esto con la ruta correcta de tu imagen */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 500px; /* Ajusta la altura de acuerdo a tus necesidades */
    text-align: center;
    color: white;
}

.famosos-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: fadeIn 3s forwards; /* Efecto de desvanecimiento */
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    padding: 20px; /* Espaciado interno */
    border-radius: 10px; /* Bordes redondeados */
}

.texto-famosos h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.texto-famosos p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Animación de desvanecimiento del texto */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.accordion-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.accordion-image-container {
  flex: 1;
  margin-top: 20px;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.accordion-image {
  width: 95%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.accordion-items {
  flex: 1;
  margin-top: 20px;

}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
  
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

.accordion-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-left: 10px;
}

.accordion-toggle {
  width: 24px;
  margin-right: 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.accordion-toggle.active {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px 0 0;
}

.accordion-content.active {
  max-height: 500px;
  padding-bottom: 20px;
}

.accordion-content p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: #333;
}
.seccion-publicidad {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
  }
  
  .seccion-publicidad .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .seccion-publicidad .titulo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .seccion-publicidad .linea {
    width: 100px;
    height: 4px;
    background-color: #ffcc00;
    margin: 20px auto;
  }
  
  .seccion-publicidad p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
  }
  .carrusel-campanas {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
  }
  
  .carrusel-campanas .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .carrusel-campanas h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
  }
  
  .carousel-item {
    position: relative;
    margin: 0 15px;
    width: 300px;
    height: 200px;
    overflow: hidden;
  }
  
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .carousel-item:hover img {
    opacity: 0.6;
    transform: scale(1.1);
  }
  
  .carousel-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
  }
  
  .carousel-text span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .carousel-text h3 {
    font-size: 16px;
    font-weight: 600;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .carousel-dots .dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .carousel-dots .dot:hover {
    background-color: #ffcc00;
  }
/* SECCIÓN EXPERTOS ADS */

.expertos-ads {
    background-color: #04081f;
    color: #fff;
    padding: 60px 0;
  }
  
  .contenido-ads {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .imagen-ads img {
    width: 550px;
    height: auto;
  }
  
  .texto-ads {
    text-align: left;
    max-width: 500px;
  }
  
  .texto-ads h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .texto-ads h2 span {
    color: #e92f76;
  }
  
  .texto-ads h3 {
    font-size: 30px;
    color: #e2ff17;
    margin-bottom: 20px;
  }
  
  .social-icons {
    margin-bottom: 25px;
  }
  
  .social-icons a {
    color: #ffffff;
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
  }
  
  .boton-whatsapp {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .boton-whatsapp:hover {
    background-color: #e92f76;
    color: #fff;
  }
/* Estilos Generales */
.servicios-ayuda {
    text-align: center;
    padding: 50px 0;
    background-color: #ffffff;
    color: #333;
  }
  
  .servicios-ayuda h2 {
    font-size: 2em;
    margin-bottom: 40px;
    position: relative;
  }
  
  .servicios-contenedor {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
  
  .servicio-item {
    position: relative;
    width: 250px;
    height: 300px;
    margin: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
  }
  
  .servicio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
    color: #fff;
    transition: background 0.3s ease;
  }
  
  .servicio-item .icono {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .servicio-item p {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .servicio-item:hover {
    transform: scale(1.05);
  }
  
  .servicio-item:hover .overlay {
    background: rgba(0,0,0,0.3);
  }
  
  /* Imágenes de Fondo para cada caja (puedes personalizarlas según tus imágenes) */
  .publicidad {
    background-image: url('assets/imagenes/marketing1.jpg');
  }
  
  .medios {
    background-image: url('assets/imagenes/marketing2.jpg');
  }
  
  .grafico {
    background-image: url('assets/imagenes/marketing3.jpg');
  }
  
  .produccion {
    background-image: url('assets/imagenes/marketing4.jpg');
  }
/* Sección Texto Descriptivo */
.seccion-descripcion {
    padding: 50px 20px;
    background-color: #ffffff;
    color: #666;
    display: flex;
    justify-content: center;
}

.contenedor-descripcion {
    max-width: 900px;
    text-align: justify;
    font-size: 17px;
    line-height: 1.8;
}

.contenedor-descripcion strong {
    color: #333;
    font-weight: bold;
}
.seccion-info {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    text-align: left;
    font-family: 'Arial', sans-serif;
    border-bottom: 2px solid #ccc;
  }
  
  .seccion-info h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .seccion-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #606060;
    margin-bottom: 15px;
  }
  
  .video-seccion {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .texto-video {
    width: 48%;
  }
  
  .texto-video ul {
    list-style-type: square;
    padding-left: 20px;
    color: #555;
    font-size: 16px;
  }
  
  .contenedor-video {
    width: 48%;
    position: relative;
    padding-bottom: 28.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .contenedor-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .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);
  }
