body.body--dark {
  background: #18182a;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* ---------------------- HEADER ---------------------- */
.header {
  background: linear-gradient(90deg, #6626b1 0%, #0ec7b6 100%);
  padding: 18px 0;
  box-shadow: 0 2px 10px #0003;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.header__logo-img {
  background: transparent !important;
  border-radius: 50%;
  box-shadow: 0 0 8px #6626b160;
  width: 48px;
  height: 48px;
  object-fit: cover;
  /* recorte forzado */
  /* Opcional: recortar un poco si hay margen negro alrededor */
  /* clip-path: circle(45%); */
}

.header__brand {
  font-size: 1.7rem;
  margin-left: 8px;
  font-weight: bold;
  letter-spacing: 1px;
  /* Un gradiente animado o color fijo más vibrante */
  background: linear-gradient(90deg, #0ef7d7 0%, #6f5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 2px 8px #19194370, 0 1px 0 #fff5;
  transition: text-shadow .2s;
}

.header__brand:hover {
  filter: brightness(1.3) drop-shadow(0 2px 10px #0ef7d799);
  letter-spacing: 2px;
  text-shadow: 0 4px 24px #6626b175, 0 2px 0 #fff7;
  cursor: pointer;
}
.header__nav {
  display: flex;
  align-items: center;
}

.header__link.active {
  color: #00ffe7;
  border-bottom: 2px solid #00ffe7;
  font-weight: bold;
  border-radius: 0;
  /* O podés ponerle un fondo */
  /* background: rgba(0,255,231,0.09); */
  /* transition: background .22s, color .22s; */
}

.header__nav .header__link {
  margin: 0 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.12rem;
  transition: color .2s;
  padding: 12px 0;
}
.header__nav .header__link:hover {
  color: #6df8e7;
}

/* ---------------------- HAMBURGUESA MOBILE ---------------------- */
/* ---- Menú hamburguesa base ---- */
.nav-toggle {
  display: none;
}

/* Estilo del ícono hamburguesa/X */
.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1300; /* Más arriba que el menú */
  position: fixed;
  top: 32px;
  right: 32px;
  background: none;
}


.nav-toggle-label span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 4px 0;
  background: #fff;
  border-radius: 3px;
  transition: all .32s cubic-bezier(.68,-0.2,.32,1.2);
  pointer-events: none;
}

@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    top: 54px;
    right: 18px;
    width: 88vw;
    max-width: 340px;
    min-width: 210px;
    min-height: 170px;
    height: auto;
    background: linear-gradient(120deg, #6b50c5f0 0%, #0ec7b6f0 100%);
    box-shadow: 0 6px 38px #1b1838ba;
    border-radius: 20px 0 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 28px 0 28px 0;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
    overflow: hidden;
    backdrop-filter: blur(12px);
  }
  .header__nav .header__link {
    font-size: 1.28rem;
    width: 80%;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    background: none;
    transition: background 0.16s, color 0.16s;
    font-weight: 600;
    color: #fff;
  }
  .header__nav .header__link:active,
  .header__nav .header__link:hover {
    background: #1be2a250;
    color: #fff;
  }
  .nav-toggle-label {
    display: flex;
  }
  .nav-toggle:checked ~ .nav-toggle-label {
    display: flex;
  }
  /* Cambia hamburguesa a X */
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
  /* Abre el menú */
  .nav-toggle:checked ~ .header__nav {
    opacity: 1;
    pointer-events: auto;
  }
  .header__container {
    position: relative;
  }
  .header__brand {
    font-size: 1.18rem;
  }
}

/* Overlay desenfocado detrás del menú */
.menu-overlay {
  display: none;
}
.nav-toggle:checked ~ .menu-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(22,24,40,0.53);
  z-index: 1001;
  backdrop-filter: blur(4px);
  transition: opacity .18s;
}



/* ---------------------- HERO ---------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #1b1838 0%, #09998a 100%);
  min-height: 540px;
  padding: 40px 0 0 0;
  position: relative;
}
.hero__content {
  flex: 1 1 500px;
  padding-left: 6vw;
  z-index: 2;
}
.hero__title {
  font-size: 2.8rem;
  margin-bottom: 12px;
  line-height: 1.1;
}
.hero__title--strong {
  color: #3df7cc;
  font-weight: 800;
}
.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #b7e6e1;
}
.hero__cta {
  margin-bottom: 0.2rem;
  margin-top: 1.2rem;
}
.hero__cta .btn {
  margin-right: 12px;
  margin-bottom: 8px;
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: 32px;
  letter-spacing: .01em;
  box-shadow: 0 4px 28px #0ec7b66c;
}
.hero__img-container {
  flex: 1 1 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 0;
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero__img.hero__img--big {
  width: 100%;
  max-width: 650px;
  min-width: 320px;
  min-height: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 40px #000b);
  pointer-events: none;
  background: none;
  border-radius: 0;
  margin-right: 0;
  margin-left: 0;
  aspect-ratio: 4/3;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: 350px;
    padding: 24px 0 0 0;
    align-items: center;
    justify-content: flex-start;
  }
  .hero__img-container {
    width: 100%;
    min-height: 180px;
    margin-top: 24px;
    justify-content: center;
  }
  .hero__img.hero__img--big {
    max-width: 440px;
    min-width: 180px;
    min-height: 180px;
    width: 85vw;
    aspect-ratio: 4/3;
    margin: 0 auto;
    display: block;
  }
  .hero__content {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .hero__cta .btn {
    font-size: 1.2rem;
    padding: 18px 0;
    width: 95vw;
    max-width: 340px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 600px) {
  .hero__img-container {
    min-height: 130px;
  }
  .hero__img.hero__img--big {
    max-width: 96vw;
    min-width: 130px;
    min-height: 110px;
    width: 96vw;
    aspect-ratio: 4/3;
    margin-bottom: 8px;
  }
  .hero__title {
    font-size: 2rem;
  }
}

/* ---------------------- FEATURES, PRODUCTOS, ETC ---------------------- */
.ofrecemos-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 38px 0 28px 0;
  background: #231f3a;
}
.ofrecemos-productos__ofrecemos {
  flex: 1 1 350px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 0;
}
@media (max-width: 1200px) {
  .ofrecemos-productos__ofrecemos {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    max-width: 550px;         /* Un poco más ancho en pantallas medianas */
  }
}
@media (max-width: 900px) {
  .ofrecemos-productos__ofrecemos {
    padding: 0;
    margin: 0 auto 32px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
}

.ofrecemos__title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #3df7cc;
  margin-bottom: 18px;
}
.ofrecemos__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.ofrecemos__item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ofrecemos__icon {
  width: 38px;
  height: 38px;
  margin-right: 14px;
}
.ofrecemos__item-title {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
}
.ofrecemos__item-desc {
  display: block;
  font-size: .98rem;
  color: #b7e6e1;
}

/* ---------------------- PRODUCTOS DESTACADOS ---------------------- */
.ofrecemos-productos__productos {
  flex: 2 1 400px;
  padding-right: 7%;
}
.productos__title {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #3df7cc;
  font-weight: 800;
  letter-spacing: .03em;
  text-shadow: 0 2px 16px #0ec7b660;
  background: linear-gradient(90deg, #0ec7b6, #6626b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  /* Centrado real */
  text-align: center;
  display: block; /* O simplemente quitá 'display: flex' */
  width: 100%;
}


.productos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.producto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #17164360;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.producto-card:hover {
  box-shadow: 0 4px 32px #3df7cc70, 0 1.5px 0 #00ffe770;
  transform: translateY(-5px) scale(1.04);
  cursor: pointer;
}
.producto-card__img {
  width: 90%;
  height: 90%;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: none;
  background: none;
  margin: 0 auto;
  padding: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.producto-card__img:hover {
  transform: scale(1.09) rotate(-2deg);
  box-shadow: 0 0 36px #12f7d7aa;
}

/* ---------- PRODUCTOS GRID RESPONSIVE ---------- */
@media (max-width: 900px) {
  .ofrecemos-productos,
  .hero {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .ofrecemos-productos__ofrecemos, .ofrecemos-productos__productos {
    padding: 0 4%;
  }
  .productos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .productos__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------- CTA FINAL Y FOOTER ---------------------- */
.cta-final {
  background: linear-gradient(90deg, #0ec7b6 0%, #6626b1 100%);
  text-align: center;
  padding: 42px 0;
}
.cta-final__title {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.cta-final__desc {
  color: #fff;
  font-size: 1.1rem;
}
.footer {
  background: #18182a;
  padding: 24px 0;
  color: #c3c4d5;
  text-align: center;
}
.footer__brand {
  font-weight: 700;
  font-size: 1.1rem;
}
.footer__nav {
  margin-top: 8px;
}
.footer__link {
  margin: 0 14px;
  color: #8c86c6;
  text-decoration: none;
}
.footer__link:hover {
  color: #0ec7b6;
}

/* ---------------------- BOTONES ---------------------- */
a.btn,
.hero__cta .btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background .2s, color .2s, box-shadow .2s;
  border: none;
  color: #fff; /* Mejor contraste por default */
}

.btn--primary {
  background: linear-gradient(90deg, #00ffcc 0%, #6626b1 100%);
  color: #171826;
  /* Box-shadow suave y corto */
  box-shadow: 0 2px 12px #0ec7b677;
  border: none;
}


.btn--primary:hover {
  background: linear-gradient(90deg, #6626b1 0%, #00ffcc 100%);
  color: #fff;
}

.btn--primary:focus,
.btn--primary:active {
  outline: none;
  box-shadow: 0 0 0 3px #12ffe6a6, 0 2px 8px #00ffcce3; /* Glow premium */
  border: none;
  color: #fff;
}

.btn--secondary,
.btn--outline {
  background: transparent;
  color: #3df7cc;
  border: 2px solid #3df7cc;
}

.btn--secondary:hover,
.btn--outline:hover {
  background: #3df7cc30;
  color: #fff;
}


/* ---------------------- TESTIMONIAL ---------------------- */
.testimonial-section {
  background: #18192a;
  padding: 36px 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-content {
  background: rgba(38, 36, 62, 0.93);
  border-radius: 16px;
  padding: 26px 36px 18px 36px;
  max-width: 500px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 14px #0005;
  position: relative;
}
.testimonial-quote-mark {
  font-size: 3.3rem;
  color: #16f7c6;
  font-weight: bold;
  margin-bottom: -16px;
  line-height: 1;
}
.testimonial-quote-mark.end {
  transform: rotateY(180deg);
  margin-top: -16px;
  margin-bottom: 0;
}
.testimonial-text {
  font-size: 1.18rem;
  font-style: italic;
  color: #eafaf6;
  margin: 12px 0 18px 0;
  letter-spacing: 0.02em;
}
.testimonial-author {
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #1de9c4;
  font-size: 1.06rem;
}
.testimonial-role {
  margin: 0;
  padding: 0;
  color: #b7e6e1;
  font-size: 0.97rem;
  font-weight: 400;
}

/* ---------------------- FORMULARIO DE CONTACTO ---------------------- */
.contacto-section {
  background: linear-gradient(90deg, #0ec7b6 0%, #6626b1 100%);
  padding: 56px 0 46px 0;
  text-align: center;
}
.contacto-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.contacto-desc {
  color: #eafaf6;
  margin-bottom: 32px;
  font-size: 1.18rem;
}
.contacto-form {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  width: 100%;
}
.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  color: #17182a;
  margin-bottom: 0;
  outline: none;
  box-sizing: border-box;
  box-shadow: 0 2px 14px #1bded860;
  transition: box-shadow .18s;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
  box-shadow: 0 0 0 2px #16f7c6, 0 2px 14px #1bded860;
}
.contacto-btn {
  margin-top: 6px;
  padding: 12px 0;
  width: 100%;
  font-size: 1.13rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.form-success {
  color: #fff;
  font-size: 1.06rem;
  margin-top: 18px;
  background: #3df7cc80;
  padding: 8px 14px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .ofrecemos-productos__ofrecemos {
    padding: 0;
    margin: 0 auto 32px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .ofrecemos__title {
    text-align: center;
    width: 100%;
    margin-bottom: 22px;
  }
  .ofrecemos__list {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .ofrecemos__item {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    text-align: center;
    margin: 0 0 28px 0;
    width: 100%;
  }


  .ofrecemos__icon {
    margin: 0 0 6px 0;
    width: 38px;
    height: 38px;
  }
  .ofrecemos__btn {
    margin: 18px auto 0 auto;
    width: 90vw;
    max-width: 270px;
    display: block;
    font-size: 1.15rem;
    padding: 14px 0;
  }
}

/* Fade-in y slide-up */
.animar-aparece {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.hero__content, .hero__img-container,
.ofrecemos-productos__ofrecemos, .ofrecemos-productos__productos,
.testimonial-section, .contacto-section,
.ofrecemos__icon {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(.4,1,.4,1), transform 0.85s cubic-bezier(.3,.9,.5,1);
}

/* Botón pop */
.btn-pop {
  animation: btnPop .22s cubic-bezier(.5,1.7,.4,1.1);
}
@keyframes btnPop {
  0%   { transform: scale(1);}
  40%  { transform: scale(1.11);}
  100% { transform: scale(1);}
}

/* Icon bounce (rebote) */
.ofrecemos__icon.animar-aparece {
  animation: iconBounce 0.75s cubic-bezier(.4,1.6,.3,1) 0.12s;
}
@keyframes iconBounce {
  0%   { transform: scale(0.5) translateY(40px);}
  60%  { transform: scale(1.2) translateY(-6px);}
  100% { transform: scale(1) translateY(0);}
}

.producto-card__label {
  display: block;
  margin-top: 12px;
  font-size: 1.07rem;
  font-weight: 600;
  color: #231f3a;
  text-align: center;
  letter-spacing: 0.02em;
}

.producto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #17164360;
  display: flex;
  flex-direction: column;    /* <---- VERTICALIZA TODO */
  justify-content: center;
  align-items: center;
  min-height: 180px;
  transition: box-shadow 0.25s, transform 0.25s;
  padding: 20px 8px 16px 8px; /* espacio interno superior/izq/aba/der */
}

.producto-card__img {
  width: 90%;
  max-width: 130px;
  max-height: 110px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.producto-card__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;   
  max-width: 210px;   
  width: 90%;         
  margin: 18px auto 0 auto;
  font-size: 1.19rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  z-index: 1;
  text-shadow: 0 2px 10px #18182acc, 0 1px 0 #fff7;
  padding: 0.5em 0.2em;
  border-radius: 2em;
  box-sizing: border-box;
}

/* Burbuja degradada detrás */
.producto-card__label::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  border-radius: 2em;
  background: linear-gradient(90deg, #191943 0%, #1be2a2 60%, #6b50c5 100%);
  opacity: 0.65;
  z-index: -1;
  filter: blur(0.2px);
  box-shadow: 0 4px 24px #19194340;
  transition: background 0.5s, opacity 0.2s, filter 0.2s;
  background-size: 200% 100%;
  animation: barra-move 3.8s ease-in-out infinite alternate;
}

.producto-card__label:hover::before {
  opacity: 0.88;
  filter: brightness(1.25) blur(0.4px);
}

@keyframes barra-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 600px) {
  .hero {
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 100vh; /* El hero ocupa todo el alto visible */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(170deg, #191943 0%, #08ceb6 100%);
    overflow: hidden;
  }

  .hero__content {
    padding-top: 18vw !important;
    padding-left: 7vw !important;
    padding-right: 7vw !important;
    z-index: 2;
    background: transparent;
    text-align: center;
    /* Sombrilla suave atrás del texto para mejor contraste */
    text-shadow: 0 4px 24px #11193d82, 0 2px 0 #fff5;
  }

  .hero__title {
    font-size: 2.2rem;
    margin-bottom: 8px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .hero__title--strong {
    color: #3df7cc;
    font-weight: 900;
    text-shadow: 0 4px 24px #16f7c699, 0 1px 0 #fff8;
  }

  .hero__subtitle {
    font-size: 1.08rem;
    margin-bottom: 22px;
    color: #d5fcfa;
    font-weight: 400;
    text-shadow: 0 2px 14px #19194340;
  }

  .hero__cta {
    margin-top: 12px !important;
    margin-bottom: 38vw !important; /* Ajusta para que no tapen la moto */
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hero__cta .btn {
    font-size: 1.13rem;
    padding: 16px 0;
    width: 92vw;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 2em;
    box-shadow: 0 4px 24px #0ec7b642, 0 1.5px 0 #00ffe729;
    letter-spacing: 0.04em;
  }

  .hero__img-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1vw;
    width: 100vw;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 36vw;
  }

  .hero__img.hero__img--big {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 86vw !important;
    max-width: 430px;
    min-width: 125px;
    min-height: 110px;
    opacity: 0.99;
    filter: drop-shadow(0 14px 56px #0a1630c7) brightness(1.08);
    transition: filter .3s, opacity .3s;
  }
}

@keyframes flotarMoto {
  0%   { transform: translateY(0px);}
  50%  { transform: translateY(-16px);}
  100% { transform: translateY(0px);}
}

.hero__img--big {
  animation: flotarMoto 3.5s ease-in-out infinite;
  /* Ya tiene los otros estilos que pusimos antes */
}


.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 28px;
  z-index: 990;
  box-shadow: 0 2px 16px #17f7c73b;
  border-radius: 50%;
  transition: box-shadow 0.22s, transform 0.2s;
  background: #222c;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover {
  box-shadow: 0 6px 30px #1be2a3aa, 0 2px 8px #16f7c660;
  transform: scale(1.06);
}
.whatsapp-icon {
  width: 58px;
  height: 58px;
  display: block;
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 18px;
    bottom: 16px;
    padding: 2px;
    box-shadow: 0 2px 8px #19e2b630;
  }
  .whatsapp-icon {
    width: 46px;
    height: 46px;
  }
}


/* Botón de catálogo especial */
#btn-catalogo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #262845 0%, #1be2a2 100%);
  color: #eafaf6;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: 22px;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px #101a3012;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 18px;
  margin-top: 12px;
  outline: none;
  letter-spacing: 0.02em;
}

#btn-catalogo:hover, #btn-catalogo:focus {
  background: linear-gradient(90deg, #262845 0%, #15b88e 100%);
  color: #fff;
  box-shadow: 0 4px 18px #181f3820;
  transform: translateY(-1.5px) scale(1.02);
}

#btn-catalogo .catalogo-icono {
  font-size: 1.12em;
  margin-right: 4px;
}

#btn-catalogo {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.presentacion-section {
  background: #23233b; /* Fondo un poco más claro */
  padding: 64px 0 48px 0;
  text-align: center;
}

.presentacion-container {
  max-width: 790px;
  margin: 0 auto;
  padding: 0 18px;
}

.presentacion-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.presentacion-divider {
  width: 68px;
  height: 4px;
  margin: 0 auto 28px auto;
  background: linear-gradient(90deg, #ffaa44 40%, #3df7cc 100%);
  border-radius: 2px;
}

.presentacion-desc {
  font-size: 1.15rem;
  color: #eafaf6;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 700px) {
  .presentacion-title { font-size: 1.5rem; }
  .presentacion-desc { font-size: 1rem; }
  .presentacion-section { padding: 44px 0 30px 0; }
  .presentacion-divider { margin-bottom: 18px; }
}

.panel-container {
  background: #2b2a49;
  border-radius: 18px;
  padding: 36px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 4px 28px #00000055;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.panel-container h1 {
  font-size: 1.9rem;
  margin-bottom: 28px;
}

.panel-menu {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.panel-menu a {
  background: none;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #16f7c6;
  transition: background 0.2s, color 0.2s;
}

.panel-menu a:hover {
  background: #16f7c61a;
  color: #fff;
}

.panel-menu .activo {
  background: #16f7c6;
  color: #101a30;
}

.btn-logout {
  float: right;
  background: #16f7c6;
  color: #18182a;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-logout:hover {
  background: #12e2b5;
}

.panel-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.panel-table th, .panel-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #444;
  text-align: left;
  color: #eafaf6;
}

.panel-table th {
  color: #16f7c6;
  font-weight: bold;
  font-size: 1rem;
}

.panel-table tr:hover {
  background: #1e1d33;
}

.panel-table td .borrar {
  color: #ff5050;
  font-weight: bold;
  text-decoration: none;
}

.panel-table td .borrar:hover {
  color: #ff8080;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .tabla-respuestas {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tabla-respuestas table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
  }

  .tabla-respuestas th,
  .tabla-respuestas td {
    padding: 12px;
    white-space: nowrap;
  }

  .panel-menu a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 14px;
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group button {
    width: 100%;
    box-sizing: border-box;
  }
}

.testimonial-text,
.testimonial-author {
  transition: opacity 0.4s ease;
  opacity: 1;
}

.fade-out {
  opacity: 0;
}
