.hero {
  position: relative;
  height: 100vh;
  overflow: visible;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}

.hero-left h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto;
  font-weight: 800;
  text-transform: none;
  stroke-width: 1px;
  stroke: #414141;
  text-shadow: 0px 0px 12px #000000;
  color: #FFFFFF;
}

.hero-boxes {
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 3;
}

.hero-box {
  background: #f4f4f4;
  color: #333;
  padding: 2rem;
  width: 280px;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-box-dark {
  background: var(--color2);
  color: #fff;
}

.hero-box h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-box p {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-boxes {
    position: absolute;
    bottom: -30rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 90%;
  }

  .hero-box {
    width: 100%;
  }

  .hero {
    height: 80vh;
  }
}

@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 1rem;
  }

  .hero-left h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 2.3rem;
  }
}

.about-section {
  width: 100%;
  margin-top: 3rem;
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
  display: flex;
  justify-content: center;
  font-family: "Inter", Arial, sans-serif;
}

.about-section .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.about-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-item:hover {
  transform: translateY(-5px);
}

.about-item.reverse {
  flex-direction: row-reverse;
}

.about-item .text {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
}

.about-item .text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1f1f1f;
  position: relative;
}

.about-item .text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color);;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.about-item .text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.2rem;
}

.about-item .text ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.about-item .text li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: #444;
}

.about-item .text li::before {
  content: "•";
  color: var(--color);;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn#bc {
  width: 100%;
  text-align: center;
}

.about-item .image {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-item .image img,
.about-item .image iframe {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image iframe {
  height: 250px !important;
}

.about-item .image img:hover,
.about-item .image iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {

  .about-item,
  .about-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .about-section {
  margin-top: 28rem;
}

  .about-item .text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-item .text {
    max-width: 100%;
  }

  .about-item .image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-item .text h2 {
    font-size: 1.7rem;
  }

  .about-item .text p {
    font-size: 0.95rem;
  }

  .about-item .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}

.social-section {
  position: relative;
  min-height: 400px;
  background: url("../imgs/siguenos.jpg") center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.social-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 0;
}

.social-section .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.social-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  display: inline-block;
}

.social-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color);;
  margin: 0.8rem auto 0;
  border-radius: 3px;
}

.social-section .icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-section .icons a {
  color: #fff;
  font-size: 2rem;
  width: 55px;
  height: 55px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.35s ease;
  text-decoration: none;
}

.social-section .icons a:hover {
  transform: translateY(-5px) scale(1.15);
  background: var(--color);;
  border-color: var(--color);;
  box-shadow: 0 6px 18px var(--color2);;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .social-section {
    min-height: 300px;
    background-attachment: scroll;
    padding: 2rem 1rem;
  }

  .social-section h2 {
    font-size: 1.8rem;
  }

  .social-section .icons {
    gap: 1.2rem;
  }

  .social-section .icons a {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .social-section {
    min-height: 250px;
    padding: 1.5rem 1rem;
  }

  .social-section h2 {
    font-size: 1.4rem;
  }

  .social-section .icons a {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
  }
}


.faq-section {
  display: grid;
  font-family: "Inter", Arial, sans-serif;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  padding: 3rem;
  max-width: 1200px;
  margin: auto;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-tag {
  background: #ffe8e8;
  color: var(--color);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: bold;
  width: fit-content;
}

.faq-left h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.faq-left p {
  color: #555;
  line-height: 1.6;
}

.faq-btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: var(--color);;
  border: 2px solid var(--color);;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  background: var(--color);;
  color: #fff;
  box-shadow: 0 5px 15px var(--color2);;
}

/* Derecha */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 10px;
  background: #fafafa;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #f5f5f5;
}

.faq-question {
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.35s ease;
  margin-top: 0.5rem;
  color: #444;
  line-height: 1.6;
  padding-left: 0.3rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .faq-left h2 {
    font-size: 2rem;
    text-align: center;
  }

  .faq-left p {
    text-align: center;
  }

  .faq-tag {
    margin: auto;
    text-align: center;
  }

}

@media (max-width: 600px) {
  .faq-section {
    padding: 1.5rem;
  }

  .faq-left h2 {
    font-size: 2rem;
    text-align: center;
  }

  .faq-btn {
    padding: 0.6rem 1.2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  div.image>img {
    width: 90% !important;
  }

  div.about-item>div.image {
    width: 100%;
  }

  .about-section .container {
    gap: 3rem;
  }

  .hero-boxes {
    flex-direction: row;
    bottom: -10rem;
  }

  .about-section {
    margin-top: 7rem;
  }
}