* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html, body {
  overflow-x: hidden;
}
body{
  background-color: #b17cc4;
}
@keyframes drive {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(120px) rotate(-2deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

/* ==================== NAV ==================== */
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); /* 👈 Transparente con leve oscuridad */
  backdrop-filter: blur(6px); /* 👈 Efecto de desenfoque */
  box-shadow: none;
  z-index: 10;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: fixed;  
}
nav .logo {
  width: 100px;
}
nav ul {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
nav ul li {
  list-style: none;
  display: inline-block;
  margin-left: 40px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
#nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
#nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
/*  Hover */
#nav-links a:hover {
  color: #a020f0; /* Morado */
}
/* Link activo según sección */
#nav-links a.active {
  color: #a020f0;
  font-weight: 600;
}
/* Opcional: subrayado animado en el activo */
#nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a020f0;
  border-radius: 2px;
}
/* ==================== HAMBURGER MENU ==================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* Icono en X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ==================== VIDEO ==================== */
.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translateZ(-1px) scale(2);
  will-change: transform;
}
.media-icons {
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}
.media-icons a {
  color: white;
  font-size: 25px;
  margin: 10px 0;
  transition: 0.3s ease;
}
.media-icons a:not(:last-child) {
  border-bottom: 20px;
}
.media-icons a:hover {
  transform: scale(1.3);
}
@media (min-aspect-ratio: 16/9) {
  .back-video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .back-video {
    width: auto;
    height: 100%;
  }
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;   /* Mantiene centrado */
    align-items: center;
    height: auto;             /* Permite que el contenido fluya */
    padding-top: 80px;        /* Da espacio bajo el nav fijo */
  }
  .hero-text h1 {
    font-size: 40px;
  }
  /* Mostrar hamburguesa */
  .menu-toggle {
    display: flex;
  }
  /* Menú lateral oculto por defecto */
  nav ul {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
  }
  /* Menú abierto */
  nav ul.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav ul li {
    margin: 15px 0;
  }
  nav ul li a {
    font-size: 18px;
  }
}
.curve-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.curve-separator svg {
  display: block;
  width: 100%;
  height: 150px;
}
section {
  background-color: #b17cc4;
  padding-top: 0;
}
.sec {
  padding: 100px 20px;
  text-align: center;
}
/* Degradado suave al final de la sección hero */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* ajusta la altura del difuminado */
  background: linear-gradient(to bottom, rgba(57, 9, 85, 0), #b17cc4);
  z-index: 1;
}
.features-section {
  background-color: #b17cc4;
  color: #fff;
  padding: 80px 5%;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: 600;
}
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-left img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 25px 20px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}
.feature-item.show {
  opacity: 1;
  transform: translateX(0);
}
.feature-item .icon {
  font-size: 1.5rem;
  font-weight: 600;
  color: #cc176b;
  flex-shrink: 0;
}
.feature-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-item p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item {
    justify-content: center;
    text-align: left;
  }
}
/*carrusel*/
:root{
  --item1-transform: translate(-100%, -5%) scale(1.5);
  --item1-filter: blur(30px);
  --item1-z-index: 11;
  --item1-opacity: 0;

  --item2-transform: translate(0, 0);
  --item2-filter: blur(0);
  --item2-z-index: 10;
  --item2-opacity: 1;

  --item3-transform: translate(50%, 10%) scale(0.8);
  --item3-filter: blur(10px);
  --item3-z-index: 9;
  --item3-opacity: 1;

  --item4-transform: translate(90%, 20%) scale(0.5);
  --item4-filter: blur(30px);
  --item4-z-index: 8;
  --item4-opacity: 1;
}
.carousel{
  margin-top: auto;
  height: 550px;
  overflow:hidden;
  position:relative;
}
/* === TITULO DE LA SECCIÓN SERVICIOS === */
.services-carousel-section header {
  text-align: center;
  margin-bottom: 50px;
}
.services-carousel-section .service-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.services-carousel-section .service-title span {
  color: #b90c85; /* color destacado */
}
.carousel .list {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1140px;
  max-width: 90%;
  transform: translateX(-50%);
  height: 80%;
}
.carousel .list .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  font-size: 15px;
}
.carousel .list .item img {
  width: 45%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.carousel .list .item .detail,
.carousel .list .item .intro {
  opacity: 0;
  pointer-events: none;
}
.carousel .list .item .intro {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
}
.carousel .list .item:nth-child(2) .intro {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s;
}
.carousel .list .item:nth-child(n + 6) {
  opacity: 0;
  pointer-events: none;
}
.carousel .list .item:nth-child(1) {
  transform: var(--item1-transform);
  filter: var(--item1-filter);
  z-index: var(--item1-z-index);
  opacity: var(--item1-opacity);
  pointer-events: none;
}
.carousel .list .item:nth-child(2) {
  transform: var(--item2-transform);
  filter: var(--item2-filter);
  z-index: var(--item2-z-index);
  opacity: var(--item2-opacity);
}
.carousel .list .item:nth-child(3) {
  transform: var(--item3-transform);
  filter: var(--item3-filter);
  z-index: var(--item3-z-index);
  opacity: var(--item3-opacity);
}
.carousel .list .item:nth-child(4) {
  transform: var(--item4-transform);
  filter: var(--item4-filter);
  z-index: var(--item4-z-index);
  opacity: var(--item4-opacity);
}
.arrows {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 1140px;
  max-width: 90%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrows #next,
.arrows #prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: monospace;
  font-size: large;
  font-weight: bold;
  border: 1px solid #ccc;
}
.arrows #back {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid #ccc;
  letter-spacing: 3px;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}
.carousel .list .item .intro .title{
  font-size: 1.8em;
  line-height: 0.8em;
  color: #dd10bb;
}
.carousel .list .item .intro .topic{
  font-size: 1.5em;
  font-weight: 500;
  color: #fff;
}
.carousel .list .item .intro .des{
  font-size: small;
  color: #fff;
}
.carousel .list .item:nth-child(2) .intro .title,
.carousel .list .item:nth-child(2) .intro .topic,
.carousel .list .item:nth-child(2) .intro .des{
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}
@keyframes showContent{
  from{
    transform: translate(50px);
    filter: blur(30px);
  }
  to{
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
.carousel .list .item:nth-child(2) .intro .topic{
  animation-delay: 0.9s;
}
.carousel .list .item:nth-child(2) .intro .des{
  animation-delay: 1.1s;
}
/* clic efecto */
.carousel.next .list .item:nth-child(1){
  animation: positionItem2 0.5s ease-in-out 1 forwards;
}
@keyframes positionItem2{
  from{
    transform: var(--item2-transform);
    filter: var(--item2-filter);
    z-index: var(--item2-z-index);
    opacity: var(--item2-opacity);
  }
}
.carousel.next .list .item:nth-child(2){
  animation: positionItem3 0.7s ease-in-out 1 forwards;
}
@keyframes positionItem3{
  from{
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-z-index);
    opacity: var(--item3-opacity);
  }
}
.carousel.next .list .item:nth-child(3){
  animation: positionItem4 0.9s ease-in-out 1 forwards;
}
@keyframes positionItem4{
  from{
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-z-index);
    opacity: var(--item4-opacity);
  }
}
/* clic efecto prev */
.carousel.prev .list .item:nth-child(2){
  animation: positionItem1 0.5s ease-in-out 1 forwards;
}
@keyframes positionItem1{
  from{
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-z-index);
    opacity: var(--item1-opacity);
  }
}
.carousel.prev .list .item:nth-child(3){
  animation: positionItem2 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4){
  animation: positionItem3 0.9s ease-in-out 1 forwards;
}
.carousel::before {
  width: 500px;
  height: 300px;
  content: '';
  background-image: linear-gradient(45deg, #dc422a, blue);
  position: absolute;
  z-index: -1;
  border-radius: 20% 30% 80% 10%;
  filter: blur(150px);
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  transition: 1s;
}
@media screen and (max-width: 991px) {
  .carousel .list .item {
    width: 90%;
  }
  .carousel .list .detail .specifications {
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .carousel {
    height: 600px;
  }
  .carousel .list {
    height: 100%;
  }
  .carousel .list .item {
    width: 100%;
    font-size: 18px;
  }
  .carousel .list .item .intro {
    width: 50%;
  }
  .carousel .list .item img {
    width: 40%;
  }
  .carousel .showDetail .list .item .detail .title {
    font-size: 1em;
  }
  .carousel .showDetail .list .item .detail .des {
    height: 100px;
    overflow: auto;
  }
  .carousel .showDetail .list .item .detail .checkout {
    display: flex;
    width: max-content;
    float: right;
  }
}
/* ===== Sección Flota ===== */
.fleet-section {
  padding: 4rem 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
.fleet-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.fleet-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}
.fleet-title span {
  color: #b90c85;
}
.fleet-description {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}
/* ===== Swiper ===== */
.fleet-swiper {
  padding-bottom: 4rem;
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
/* ===== CARD ===== */
.popular__card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  width: 320px; /* más delgada */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.popular__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 63, 164, 0.25);
}
/* Imagen grande */
.popular__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.popular__card:hover .popular__img {
  transform: scale(1.06);
}
/* Contenido */
.popular__name {
  display: flex;
  flex-direction: row; /* coloca los elementos en fila */
  align-items: baseline; /* alinea el texto de manera agradable */
  justify-content: center; /* centra todo horizontalmente */
  gap: 8px; /* espacio entre título y subtítulo */
}
.popular__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #030303;
  margin-top: 1rem;
}
.popular__subtitle {
  font-size: 1rem;
  color: #b90c85;
  margin-bottom: 1rem;
}
.popular__data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  width: 80%;
  margin: 0 auto 1rem;
  color: #030303;
  font-size: 0.95rem;
}
.popular__data-group i {
  color: #ff3fa4;
  margin-right: 0.5rem;
}
/* Precio */
.popular__price {
  font-size: 1rem;
  font-weight: 700;
  color: #0c0c0c;
  margin-bottom: 1rem;
}
/* Botón */
.popular__button {
  background: linear-gradient(135deg, #ff3fa4, #b90c85);
  border: none;
  color: #fff;
  border-radius: 20%;
  width: 100px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
.popular__button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 63, 164, 0.5);
}
/* Swiper Flechas */
.swiper-button-prev,
.swiper-button-next {
  color: #ff3fa4 !important;
  transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #fff !important;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  background: #ff3fa4;
  opacity: 1;
}
/* ===== Breakpoints Responsivos ===== */
@media (min-width: 768px) {
  .popular__container {
    grid-template-columns: repeat(2, 1fr); /* 📝 Tablet: 2 cards */
  }
}
@media (min-width: 1024px) {
  .popular__container {
    grid-template-columns: repeat(3, 1fr); /* 💻 Desktop: 3 cards */
  }
}
/* ===== Sección Nosotros ===== */
.about-section {
  padding: 4rem 1rem;
  font-family: 'Poppins', sans-serif;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(247, 246, 246, 0.15);
  display: block;
  margin: 0 auto;
}
.about-content {
  text-align: center;
}
.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.about-title span {
  color: #b90c85;
}
.about-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.5rem;
  justify-content: center;
}
.about-list i {
  color: #b90c85;
}
.about-button {
  display: inline-block;
  background: #b90c85;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.about-button:hover {
  background: #9d0a71;
}
/* ===== Responsividad ===== */
@media (min-width: 768px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .about-content {
    text-align: left;
  }
  .about-list li {
    justify-content: flex-start;
  }
  .about-title {
    font-size: 2.5rem;
  }
}
/* ===== Sección Contacto por WhatsApp ===== */
.contact-section {
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.contact-info p {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1rem;
}
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.15s ease;
  margin-bottom: 1rem;
}
.whatsapp-cta i {
  font-size: 1.2rem;
}
.whatsapp-cta:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}
.contact-details p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: #fffdfd;
}
.contact-details i {
  margin-right: 0.4rem;
  color: #b90c85;
}
.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(253, 251, 251, 0.1);
}
/* ===== Responsividad ===== */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-map iframe {
    height: 240px;
  }
  .contact-info h2 {
    text-align: center;
  }
  .whatsapp-cta {
    display: block;
    text-align: center;
    width: 100%;
  }
  .contact-details {
    text-align: center;
  }
}
/* ===== FOOTER ===== */
.main-footer {
  background: linear-gradient(180deg, #a941c4 0%, #824bca 100%);
  color: #fff;
  padding: 3rem 1rem 1rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}
.footer-simple {
  color: #fff;
  padding: 40px 20px 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
}
.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  width: 210px;
  margin-bottom: 15px;
  border-radius: 15px;
}
.footer-libro{
  width: 150px;
  margin-bottom: 15px;
  border-radius: 20px;
}
.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ccc;
}
.footer-col ul li i {
  color: #fff;
  margin-right: 8px;
}
.footer-social {
  margin-top: 10px;
}
.footer-social a {
  display: inline-block;
  color: #fff;
  background-color: #220229;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin-right: 8px;
  transition: 0.3s;
}
.footer-social a:hover {
  background-color: #e42cdb;
}
.footer-book img {
  width: 110px;
  margin-top: 12px;
  transition: 0.3s;
}
.footer-book img:hover {
  transform: scale(1.05);
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
  padding-top: 10px;
}
/* ===== BOTÓN SCROLL TOP ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #5e1e75;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
#scrollTopBtn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: #7c2ca5;
  transform: translateY(-5px);
}
/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
  margin-left: 1rem;
  position: relative;
}
.language-selector select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}
.language-selector select:hover {
  background: rgba(255, 255, 255, 0.25);
}
/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}
.blog-section h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}
.blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-8px);
}
.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-card h3 {
  font-size: 1.2em;
  margin: 15px;
  color: #222;
}
.blog-card p {
  font-size: 0.95em;
  color: #555;
  margin: 0 15px 15px;
}
.blog-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: #6a0dad;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.blog-btn:hover {
  background: #8b27e6;
}
/* ===== FAQ SECTION ===== */
.faq-section {
  margin-top: 100px;
  color: #fff;
  text-align: center;
}
.faq-section h2 {
  font-size: 2.4em;
  margin-bottom: 50px;
}
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.faq-questions-box {
  text-align: left;
}
.faq-questions-box h3 {
  font-size: 2em;
  margin-bottom: 20px;
}
.faq-question {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #d69cff;
  font-size: 1.2em;
  font-weight: 600;
  margin: 15px 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease, transform 0.2s ease;
}
.faq-question:hover {
  color: #fff;
  transform: translateX(5px);
}
.faq-question.active {
  color: #fff;
  text-decoration: underline;
}
.faq-answer-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  text-align: left;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.faq-answer-box p {
  font-size: 1.2em;
  color: #e9e9e9;
  line-height: 1.6em;
}
#faq-answer-text {
  white-space: normal;
}
/* ===== REVEAL EFFECT ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-social a {
    margin: 0 5px;
  }
  .language-selector {
    margin-top: 10px;
    align-self: flex-start;
  }
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .faq-question {
    text-align: center;
  }
  .faq-answer-box {
    text-align: center;
    min-height: 180px;
  }
}
/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}
.whatsapp-tooltip {
  position: fixed;
  bottom: 95px;
  right: 35px;
  background-color: #fff;
  color: #333;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.whatsapp-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}