* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  padding-top: 120px;
}

/* Header fijo */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 0 0.5rem;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 20px;
  margin-left: 0;
}

.logo img {
  max-height: 68px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: #f79f19;
}

.logo-text strong {
  font-size: 1.1rem;
}

.logo-text span {
  font-size: 0.75rem;
}

/* Barra */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  flex-grow: 1;
}

.navbar a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 6px;
}


.navbar a:hover,
.navbar a.active {
  font-weight: 600;
  position: relative;
}

.navbar a.active {
  border-bottom: 4px solid #f79f19;
  padding-bottom: 4px;
  font-weight: 700;
}

.navbar a img {
  width: 26px;
  height: 26px;
  margin-right: 15px;
  transition: filter 0.3s;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Botón buscar */

.search-section {
  background-color: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
}

.search-box-header {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 30px;
  padding: 0.3rem 1rem;
  height: 42px;
  gap: 0.5rem;
  max-width: 250px;
  width: 100%;
}

.search-box-header input {
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  width: 100%;
  color: #000;
}

.search-box-header button {
  background-color: #f79f19;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.search-box-header button img {
  width: 25px;
  height: 25px;
}

/*Primer bloque*/

.hero {
  background: url("../assets/Banner-Temacol.jpg") center/cover no-repeat;
  min-height: 110vh;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.hero-content {
  max-width: 600px;
  padding: 2rem;
  border-radius: 10px;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 900;
}

.hero h1 .orange {
  color: #f79f19;
}

.hero-text {
  margin: 1rem 0;
  font-size: 1rem;
}

.hero-btn {
  background-color: #f79f19;
  color: black;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
}

.hero-btn:hover {
  background-color: #f79f19;
}

/* Segundo bloque */

/* Bloque Adicional */

.division {
  height: 75px;
  background-color: #000;
  width: 100%;
}

.about-description {
    padding: 4rem 1rem;
    background-color: #000;
    color: #fff;
}

.about-description .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-description .about-grid {
    display: block;
}

.about-description .about-column {
    max-width: 100%;
    margin: 0;
}

.about-description h3 {
    color: #f79f19;
    margin-bottom: 1rem;
}

.about-description p,
.about-description ul {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.about-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-description ul li {
    margin-bottom: 1rem;
}

.about-description ul li strong {
    color: #f79f19;
}

/*Tercer bloque*/

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

.video-cover {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  color: white;
}

.overlay-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 3px solid white;
}

.play-btn .triangle {
  width: 0;
  height: 0;
  border-left: 15px solid #f79f19;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.play-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
  transition: transform 0.2s ease;
}

.video-frame {
  width: 100%;
  height: 100vh;
  background-color: black;
}

/* Cuarto Bloque */

/* Quinto Bloque */

/* Sexto Bloque */

.section-divider {
  height: 5px;
  background-color: #3d0db2;
  width: 100%;
}

/* footer */

footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1.5rem 0;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 300px;
  margin-bottom: 1.5rem;
}

.logo-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0;
}

.logo-footer img {
  max-height: 48px;
  height: auto;
  width: auto;
  object-fit: contain;
}


.logo-text {
  display: flex;
  flex-direction: column;
  color: #f79f19;
}

.logo-text strong {
  font-size: 1.2rem;
}

.logo-text span {
  font-size: 0.8rem;
}

.footer-left p {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-left hr {
  border: none;
  border-top: 3px solid #f79f19;
  width: 100%;
  max-width: 450px;
  margin: 1rem 0;
}

.social-icons a img {
  width: 26px;
  height: 26px;
  margin-right: 15px;
  transition: filter 0.3s;
}

.social-icons a:hover img {
  filter: brightness(0.8) sepia(1) hue-rotate(10deg) saturate(2);
}

.footer-right {
  flex: 1 1 200px;
  margin-bottom: 1.5rem;
}

.footer-right h3 {
  color: #f79f19;
  margin-bottom: 1rem;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-right ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right ul li a:hover {
  color: #f79f19;
}

/* Footer Bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid #f79f19;
  padding: 1rem 1rem 1.5rem;
  font-size: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links a {
  margin-left: 1rem;
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f79f19;
}

/* Botón de WhatsApp */

.whatsapp-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
}

/* Ambiente responsive */

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .container {
    position: relative;
    padding: 2rem 1.5rem 1rem;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    margin: 1rem 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 1001;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 998;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .navbar.show {
    display: flex !important;
    margin-bottom: 1rem;
  }

  .navbar a {
    padding: 0.5rem 1rem;
    display: inline-block;
    text-align: center;
    position: relative;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
  }

  .search-section {
    justify-content: center;
    padding: 1rem 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
  }

  .search-box-header {
    width: 100%;
    max-width: 300px;
    flex: 1;
  }

  .search-box-header input {
    font-size: 0.9rem;
  }

  .search-box-header button {
    width: 28px;
    height: 28px;
  }

  .search-box-header button img {
    width: 16px;
    height: 16px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Responsive primer bloque */

  .hero {
    height: auto;
    padding: 2rem 1rem;
    text-align: center;
  }

  .hero-content {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text,
  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-btn {
    width: 100%;
    padding: 0.75rem;
  }

      /* Responsive Bloque Adicional */

    .about-description .about-grid {
        grid-template-columns: 1fr;
    }

    .about-description .about-column {
        max-width: 600px;
        margin: 0 auto;
    }

  /* Responsive tercer bloque */

  .video-section {
    height: auto;
  }

  .video-frame {
    height: 60vh;
  }

  .overlay-content {
    top: 40%;
    left: 10%;
    text-align: center;
  }

  .overlay-content h2 {
    font-size: 1.5rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }

  .play-btn .triangle {
    border-left: 12px solid #f79f19;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

}

@media (max-width: 480px) {
  
}

/* cualidad adicional */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #f79f19;
  outline-offset: 2px;
}