/* =====================
   BASE
===================== */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #f5f5f6;
  position: relative;
}

p {
  opacity: 0.8;
  margin-bottom: 40px;
}

/* =====================
   AI BACKGROUND
===================== */

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(
      circle at top,
      #111827 0%,
      #0b1120 50%,
      #050816 100%
    );
}


/* =====================
   HEADER
===================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #18213a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 24px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  position: relative;
}

/* NAV DESKTOP */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right {
  justify-content: flex-end;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  padding: 10px 14px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  color: rgba(245, 245, 246, 0.85);
  text-decoration: none;

  font-size: 0.82rem;
  letter-spacing: 1.2px;
  font-weight: 500;

  border-radius: 1px;

  transition: all 0.25s ease;

  position: relative;
  overflow: hidden;
}

.nav a:hover {
  color: #d8ab55;

  border-color: rgba(186, 136, 46, 0.35);

  background: rgba(186, 136, 46, 0.08);

  transform: translateY(-1px);

  box-shadow: 0 6px 18px rgba(186, 136, 46, 0.12);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  justify-self: center;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* CTA */
.cta button {
  background: #ba882e;
  border: 1px solid rgba(186,136,46,0.6);
  color: #151a2c;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 500;
}

.cta button:hover {
  background: #d1a23a;
}

/* HAMBURGUESA */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #f5f5f6;
  margin-left: auto;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;

  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: #18213a;
  border-top: 1px solid rgba(255,255,255,0.08);

  padding: 12px;
  gap: 10px;

  z-index: 2000;
}

.mobile-menu {
  display: none;
  flex-direction: column;

  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: #18213a;
  border-top: 1px solid rgba(255,255,255,0.08);

  padding: 12px;
  gap: 10px;

  z-index: 2000;
}

/* 👇 ESTO VA JUSTO AQUÍ */
.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  padding: 12px 14px;

  border: 1px solid rgba(255,255,255,0.15);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.06),
    rgba(0,0,0,0.25)
  );

  color: #f5f5f6;
  text-decoration: none;

  font-size: 0.95rem;
  letter-spacing: 0.5px;

  border-radius: 0;
  cursor: pointer;

  transition: all 0.15s ease;
}

.mobile-menu a,
.mobile-menu button {
  width: 100%;
  text-align: left;
}

/* =====================
   HERO
===================== */

.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 20px 70px;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 25px;
  opacity: 0.85;
}


/* =====================
   TRUST
===================== */

.trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =====================
   HOW IT WORKS
===================== */

.how-it-works {
  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin:
    90px auto 0;

  padding:
    0 24px;

  text-align: center;
}

.how-it-works h2 {
  color: #f5f5f6;

  font-size: 2rem;

  font-weight: 600;

  margin-bottom: 20px;

  letter-spacing: -0.5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.step-card {
  padding: 24px 18px;
  border-radius: 1px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(186,136,46,0.15);

  backdrop-filter: blur(8px);

  box-shadow: 0 8px 24px rgba(0,0,0,0.25);

  transition: all 0.2s ease;

  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(186,136,46,0.45);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 18px rgba(186,136,46,0.12);
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d8ab55;

  margin-bottom: 10px;

  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.step-card p {
  margin: 0;
  color: #f5f5f6;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* =====================
   AREAS
===================== */

.areas {
  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin:
    90px auto 0;

  padding:
    0 24px;

  text-align: center;
}

.areas h2 {
  color: #f5f5f6;

  font-size: 2rem;

  font-weight: 600;

  margin-bottom: 20px;

  letter-spacing: -0.5px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.area-card {
  padding: 30px 24px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(186,136,46,0.15);

  backdrop-filter: blur(10px);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.25);

  transition: all 0.22s ease;

  cursor: pointer;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.area-card:hover {
  transform: translateY(-3px);

  border-color: rgba(186,136,46,0.45);

  background: rgba(255,255,255,0.05);

  box-shadow:
    0 0 18px rgba(186,136,46,0.12);
}

.area-icon {
  width: 52px;
  height: 52px;

  margin-bottom: 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 5px;

  background: rgba(186,136,46,0.12);

  border: 1px solid rgba(186,136,46,0.25);

  color: #d8ab55;

  font-size: 1.5rem;
}

.area-card h3 {
  margin: 0 0 10px;

  color: #f5f5f6;

  font-size: 1.05rem;

  font-weight: 600;
}

.area-card p {
  margin: 0;

  color: rgba(255,255,255,0.72);

  font-size: 0.92rem;

  line-height: 1.5;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 900px) {

  /* ===== HERO ===== */
  .hero {
    padding: 20px 16px 50px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  /* ===== HEADER MOBILE ===== */

  .header {
    min-height: 82px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 0 18px;
  }

  /* LOGO */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-img {
    height: 58px;
    width: auto;
  }

  /* HAMBURGUESA */
  .hamburger {
    display: block;

    position: absolute;
    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    margin-left: 0;
  }

  /* MOBILE MENU */
  .mobile-menu {
    top: 100%;
  }

  .mobile-menu.active {
    display: flex;
  }

  /* CTA destacado */
  .mobile-menu button {
    background: #ba882e;
    border: 1px solid rgba(186,136,46,0.6);
    color: #151a2c;
    font-weight: 600;
  }

  .mobile-menu button:hover {
    background: #d1a23a;
  }
   
  /* ===== SECCIONES ===== */
  .steps {
  grid-template-columns: 1fr;

  gap: 16px;
}

.areas-grid {
  grid-template-columns: 1fr;

  gap: 16px;
}

.how-it-works,
.areas,
.real-chat-section {
  padding-left: 18px;
  padding-right: 18px;
}

.how-it-works h2,
.areas h2,
.real-chat-section h2 {
  font-size: 1.7rem;
}

  .trust {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust div {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
  
  }
}


/* =====================
   PAGE HERO
===================== */

.page-hero {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin: auto;

  padding:
    70px 24px 30px;

  text-align: center;
}

.page-tag {
  display: inline-block;

  padding: 8px 14px;

  margin-bottom: 20px;

  background:
    rgba(186,136,46,0.12);

  border:
    1px solid rgba(186,136,46,0.25);

  color: #d8ab55;

  font-size: 0.82rem;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.page-hero h1 {
  font-size: 3rem;

  line-height: 1.1;

  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;

  line-height: 1.7;

  opacity: 0.82;
}

/* =====================
   SERVICES
===================== */

.services-grid {
  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin:
    40px auto 100px;

  padding:
    0 24px;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;
}

.service-card {
  padding: 32px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(186,136,46,0.15);

  backdrop-filter: blur(10px);

  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);

  border-color:
    rgba(186,136,46,0.4);
}

.service-card ul {
  padding-left: 18px;

  opacity: 0.75;
}

/* =====================
   TEAM
===================== */

.team-grid {
  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin:
    40px auto 100px;

  padding:
    0 24px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.team-card {
  padding: 30px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(186,136,46,0.15);

  backdrop-filter: blur(10px);
}

.team-avatar {
  width: 68px;
  height: 68px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(186,136,46,0.12);

  color: #d8ab55;

  font-weight: 700;

  margin-bottom: 20px;
}

.team-role {
  color: #d8ab55;

  font-size: 0.82rem;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 20px;
}

.team-tags span {
  padding: 6px 10px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.06);

  font-size: 0.8rem;
}

/* =====================
   CONTACT
===================== */

.contact-layout {
  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin:
    40px auto 100px;

  padding:
    0 24px;

  display: grid;

  grid-template-columns:
    1fr 1.2fr;

  gap: 24px;
}

.contact-card,
.contact-form-card {
  padding: 32px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(186,136,46,0.15);

  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form textarea {
  min-height: 140px;

  resize: vertical;

  padding: 14px;

  background:
    rgba(0,0,0,0.25);

  border:
    1px solid rgba(255,255,255,0.08);

  color: white;
}

/* MOBILE */

@media (max-width: 900px) {

  .services-grid,
  .team-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
     }

/* =====================
   TEAM PREMIUM
===================== */

.team-grid {
  position: relative;
  z-index: 2;

  max-width: 1250px;

  margin: 50px auto 120px;

  padding: 0 24px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}

/* CARD */

.team-card {

  position: relative;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 480px;

  padding: 34px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.02)
    );

  border:
    1px solid rgba(186,136,46,0.14);

  backdrop-filter: blur(16px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

/* GOLD GLOW */

.team-card::before {

  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 240px;
  height: 240px;

  background:
    radial-gradient(
      circle,
      rgba(186,136,46,0.12),
      transparent 70%
    );

  pointer-events: none;
}

/* HOVER */

.team-card:hover {

  transform:
    translateY(-6px);

  border-color:
    rgba(186,136,46,0.38);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.025)
    );

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    0 0 30px rgba(186,136,46,0.08);
}

/* TOP */

.team-top {

  display: flex;
  align-items: center;

  gap: 18px;

  margin-bottom: 28px;
}

/* AVATAR */
.team-avatar {
  flex-shrink: 0;

  width: 72px;
  height: 72px;

  overflow: hidden;

  border-radius: 16px;

  border:
    1px solid rgba(186,136,46,0.25);
}

.team-photo {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* META */

.team-meta {
  display: flex;
  flex-direction: column;
}

.team-role {

  color: #d8ab55;

  font-size: 0.78rem;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  opacity: 0.9;

  margin-bottom: 8px;
}

.team-meta h3 {

  margin: 0;

  font-size: 1.45rem;

  line-height: 1.2;

  font-weight: 600;

  color: #f5f5f6;
}

/* TEXT */

.team-card p {

  color: rgba(255,255,255,0.72);

  line-height: 1.8;

  font-size: 0.96rem;

  margin-bottom: 18px;
}

/* FOOTER */

.team-footer {

  margin-top: auto;

  display: flex;
  flex-direction: column;

  gap: 22px;
}

/* TAGS */

.team-tags {

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.team-tags span {

  padding: 8px 12px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.07);

  color: rgba(255,255,255,0.82);

  font-size: 0.8rem;

  letter-spacing: 0.4px;

  transition:
    all 0.2s ease;
}

.team-tags span:hover {

  border-color:
    rgba(186,136,46,0.28);

  color: #d8ab55;

  background:
    rgba(186,136,46,0.08);
}

/* LANGUAGES */

.team-language {

  color: #d8ab55;

  font-size: 0.82rem;

  letter-spacing: 1.2px;

  opacity: 0.9;
}

/* MOBILE */

@media (max-width: 900px) {

  .team-grid {

    grid-template-columns: 1fr;

    gap: 22px;
  }

  .team-card {

    min-height: auto;

    padding: 28px;
  }

  .team-top {

    align-items: flex-start;
  }

  .team-meta h3 {

    font-size: 1.25rem;
  }

  .team-avatar {

    width: 74px;
    height: 74px;

    border-radius: 18px;
  }
}

/* MOBILE */

@media (max-width: 900px) {

  .team-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-card {
    min-height: auto;
  }
}

/* =====================
   FOOTER
===================== */

.footer {

  position: relative;
  z-index: 2;

  margin-top: 120px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  background: #18213a;

  backdrop-filter: blur(12px);
}
.footer-container {

  max-width: 1200px;

  margin: auto;

  padding: 60px 24px;

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr;

  gap: 50px;
}

/* BRAND */

.footer-logo {
  height: 55px;
  margin-bottom: 20px;
}

.footer-brand p {

  color:
    rgba(255,255,255,0.65);

  line-height: 1.7;

  max-width: 320px;
}

/* TITLES */

.footer h4 {

  color: #d8ab55;

  margin-bottom: 18px;

  letter-spacing: 1px;

  font-size: 0.9rem;

  text-transform: uppercase;
}

/* LINKS */

.footer-links,
.footer-contact {

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-links a {

  color:
    rgba(255,255,255,0.72);

  text-decoration: none;

  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #d8ab55;
}

.footer-contact p {

  margin: 0;

  color:
    rgba(255,255,255,0.65);

  line-height: 1.6;
}

/* BOTTOM */

.footer-bottom {

  padding: 22px;

  text-align: center;

  border-top:
    1px solid rgba(255,255,255,0.06);

  background: rgba(9,14,26,0.82);

  color:
    rgba(255,255,255,0.45);

  font-size: 0.85rem;
}

/* MOBILE */

@media (max-width: 900px) {

  .footer-container {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer {
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}

/* =====================
   BOOKING
===================== */

.booking-section {

  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin: 100px auto;

  padding: 0 24px;
}

.booking-header {

  text-align: center;

  max-width: 760px;

  margin: auto auto 50px;
}

.booking-header h2 {

  font-size: 2.4rem;

  margin-bottom: 16px;
}

.booking-header p {

  font-size: 1.1rem;

  opacity: 0.8;
}

.booking-layout {

  display: grid;

  grid-template-columns:
    1fr 1.1fr;

  gap: 24px;
}

/* CARD */

.booking-card,
.booking-form-card {

  padding: 34px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(186,136,46,0.15);

  backdrop-filter: blur(10px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

/* TITLES */

.booking-card h3,
.booking-form-card h3 {

  margin-top: 0;

  margin-bottom: 20px;

  color: #f5f5f6;
}

/* DATES */

.booking-dates {

  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 35px;
}

.booking-date {

  padding: 12px 18px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  color: #f5f5f6;

  cursor: pointer;

  transition: all 0.2s ease;
}

.booking-date:hover,
.booking-date.active {

  background:
    rgba(186,136,46,0.16);

  border-color:
    rgba(186,136,46,0.4);

  color: #d8ab55;
}

/* TIMES */

.booking-times {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 12px;
}

.booking-times button {

  padding: 14px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  color: #f5f5f6;

  cursor: pointer;

  transition: all 0.2s ease;
}

.booking-times button:hover {

  background:
    rgba(186,136,46,0.14);

  border-color:
    rgba(186,136,46,0.4);
}

/* FORM */

.booking-form {

  display: flex;
  flex-direction: column;

  gap: 16px;
}

.booking-form input,
.booking-form textarea {

  padding: 14px;

  background:
    rgba(0,0,0,0.25);

  border:
    1px solid rgba(255,255,255,0.08);

  color: white;

  resize: vertical;
}

.booking-form textarea {

  min-height: 120px;
}

.booking-form button {

  padding: 15px;

  background:
    linear-gradient(
      to bottom,
      #d8ab55,
      #ba882e
    );

  color: #151a2c;

  font-weight: 600;

  border: none;

  cursor: pointer;

  transition: all 0.2s ease;
}

.booking-form button:hover {

  transform: translateY(-1px);

  box-shadow:
    0 10px 24px rgba(186,136,46,0.25);
}

/* NOTE */

.booking-note {

  margin-top: 24px;

  color:
    rgba(255,255,255,0.65);

  line-height: 1.8;

  font-size: 0.92rem;
}

/* MOBILE */

@media (max-width: 900px) {

  .booking-layout {

    grid-template-columns: 1fr;
  }

  .booking-header h2 {

    font-size: 2rem;
  }

  .booking-times {

    grid-template-columns:
      repeat(2, 1fr);
  }
}
/* =====================
   TESTIMONIALS
===================== */

.testimonials {

  position: relative;
  z-index: 2;

  max-width: 1200px;

  margin:
    100px auto 0;

  padding:
    0 24px;

  text-align: center;
}

/* TITLE */

.testimonials h2 {

  font-size: 2rem;

  font-weight: 600;

  margin-bottom: 20px;

  letter-spacing: -0.5px;

  color: #f5f5f6;
}

.testimonials-subtitle {

  max-width: 760px;

  margin:
    0 auto 50px;

  color:
    rgba(255,255,255,0.7);

  line-height: 1.7;

  font-size: 1rem;
}

/* GRID */

.testimonials-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;
}

/* CARD */

.testimonial-card {

  position: relative;

  overflow: hidden;

  padding: 34px;

  text-align: left;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.02)
    );

  border:
    1px solid rgba(186,136,46,0.14);

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

/* GOLD GLOW */

.testimonial-card::before {

  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 240px;
  height: 240px;

  background:
    radial-gradient(
      circle,
      rgba(186,136,46,0.12),
      transparent 70%
    );

  pointer-events: none;
}

/* HOVER */

.testimonial-card:hover {

  transform:
    translateY(-5px);

  border-color:
    rgba(186,136,46,0.38);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    0 0 30px rgba(186,136,46,0.08);
}

/* QUOTE */

.testimonial-quote {

  font-size: 1.02rem;

  line-height: 1.9;

  color:
    rgba(255,255,255,0.78);

  margin-bottom: 28px;

  position: relative;
}

/* LARGE QUOTE MARK */

.testimonial-quote::before {

  content: "“";

  position: absolute;

  left: -12px;
  top: -20px;

  font-size: 4rem;

  color:
    rgba(186,136,46,0.18);

  font-family:
    serif;
}

/* AUTHOR */

.testimonial-author {

  display: flex;

  flex-direction: column;

  gap: 6px;
}

.testimonial-author strong {

  color: #f5f5f6;

  font-size: 1rem;

  font-weight: 600;
}

.testimonial-author span {

  color:
    rgba(216,171,85,0.82);

  font-size: 0.82rem;

  letter-spacing: 1px;

  text-transform: uppercase;
}

/* STARS */

.testimonial-stars {

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 22px;

  color: #d8ab55;

  font-size: 1.15rem;

  letter-spacing: 5px;

  text-align: center;
}

/* TEXT */

.testimonial-text {

  width: 100%;

  margin: 0 auto 28px;

  text-align: center;

  font-style: italic;

  color:
    rgba(255,255,255,0.82);

  line-height: 1.9;

  font-size: 1rem;
}

/* AUTHOR */

.testimonial-author {

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  color: #f5f5f6;

  font-weight: 600;

  letter-spacing: 0.3px;
}

/* MOBILE */

@media (max-width: 900px) {

  .testimonials-grid {

    grid-template-columns: 1fr;
  }

  .testimonials {

    padding:
      0 18px;
  }

  .testimonials h2 {

    font-size: 1.7rem;
  }

  .testimonial-card {

    padding: 28px;
  }

  .testimonial-quote {

    font-size: 0.96rem;

    line-height: 1.8;
  }
}

/* =====================
   SOCIAL PROOF POPUP
===================== */

.social-popup {

  position: fixed;

  left: 24px;
  bottom: 24px;

  z-index: 5000;

  width: 320px;

  display: flex;
  align-items: center;

  gap: 14px;

  padding: 16px;

  background:
    linear-gradient(
      180deg,
      rgba(24,33,58,0.96),
      rgba(15,23,42,0.96)
    );

  border:
    1px solid rgba(186,136,46,0.22);

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 20px rgba(186,136,46,0.08);

  opacity: 0;

  transform:
    translateY(20px);

  pointer-events: none;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* ACTIVE */

.social-popup.show {

  opacity: 1;

  transform:
    translateY(0);
}

/* ICON */

.social-popup-icon {

  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(186,136,46,0.14);

  border:
    1px solid rgba(186,136,46,0.28);

  color: #d8ab55;

  font-weight: 700;

  font-size: 1rem;
}

/* CONTENT */

.social-popup-content {

  display: flex;
  flex-direction: column;

  gap: 6px;
}

.social-popup-text {

  color: #f5f5f6;

  font-size: 0.92rem;

  line-height: 1.5;
}

.social-popup-label {

  color:
    rgba(216,171,85,0.72);

  font-size: 0.75rem;

  letter-spacing: 1px;

  text-transform: uppercase;
}

/* MOBILE */

@media (max-width: 900px) {

  .social-popup {

    left: 14px;
    right: 14px;
    bottom: 14px;

    width: auto;
  }
}


    flex-direction: column;
  }

  .input-area button {
    width: 100%;
  }
}

/* =====================
   CHAT DEMO (ANIMACIÓN INICIAL)
===================== */

/* Estado inicial: Completamente extirpados del flujo visual, imposibles de saltar */
.demo-messages .demo-msg,
.demo-messages .typing {
  display: none !important;
}

/* Estado activo: Aparecen y ejecutan su propia animación de entrada controlada */
.demo-messages .demo-msg.show {
  display: block !important;
  animation: demoMessageFadeIn 0.4s ease forwards !important;
}

.demo-messages .typing.show {
  display: flex !important;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
  border-radius: 1px;
  max-width: 82%;
  align-self: flex-start;
  animation: demoMessageFadeIn 0.4s ease forwards !important;
}

.demo-messages .typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8ab55;
  animation: typingBounceDemo 1.2s infinite ease-in-out;
}

.demo-messages .typing span:nth-child(2) { animation-delay: 0.2s; }
.demo-messages .typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes demoMessageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes typingBounceDemo {
  0%, 80%, 100% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Forzar esquinas rectas en el input y botón falsos de la simulación */
.demo-chat .fake-input input,
.chat-container.demo-chat .input-area input {
  border-radius: 0px !important;
}

.demo-chat .fake-input button,
.chat-container.demo-chat .input-area button {
  border-radius: 0px !important;
}


/* =====================
   CHAT REAL (FUNCIONAL)
===================== */

.chat-container {
  max-width: 680px;
  margin: auto;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(186,136,46,0.18);
  border-radius: 1px;
  backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
}

/* HEADER */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chat-header span {
  color: #f5f5f6;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.5);
}

/* CHAT BOX */
.chat-box {
  height: 420px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

/* INPUT */
.input-area {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.input-area input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 1px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  outline: none;
}

.input-area button {
  padding: 14px 20px;
  border-radius: 1px;
  border: none;
  background: linear-gradient(to bottom, #d8ab55, #ba882e);
  color: #151a2c;
  font-weight: 700;
  cursor: pointer;
}

/* MENSAJES */
.message {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 1px;
  line-height: 1.5;
  font-size: 0.95rem;
  animation: fadeMessage 0.25s ease;
}

.message.user {
  align-self: flex-end;
  background: linear-gradient(to bottom, #d8ab55, #ba882e);
  color: #151a2c;
  font-weight: 500;
}

.message.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: #f5f5f6;
}

/* TYPING REAL */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
}

.typing-dots {
  display: flex;
  gap: 5px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8ab55;
  animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ANIMACIONES */
@keyframes fadeMessage {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 700px) {
  .chat-box { height: 380px; }
  .message { max-width: 92%; }
  .input-area { flex-direction: column; }
}



/* =====================
   SOCIAL PROOF POPUPS
===================== */

.social-proof-container {

  position: fixed;

  bottom: 24px;
  left: 24px;

  z-index: 9999;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

.social-proof {

  min-width: 290px;
  max-width: 340px;

  padding: 16px 18px;

  background:
    rgba(24,33,58,0.92);

  border:
    1px solid rgba(186,136,46,0.22);

  backdrop-filter: blur(14px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35);

  color: #f5f5f6;

  animation:
    popupIn 0.4s ease,
    popupOut 0.4s ease 5.6s forwards;
}

.social-proof strong {
  color: #d8ab55;
}

.social-proof small {

  display: block;

  margin-top: 8px;

  opacity: 0.55;

  font-size: 0.8rem;
}

@keyframes popupIn {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popupOut {

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* MOBILE */

@media (max-width: 900px) {

  .social-proof-container {

    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .social-proof {

    min-width: auto;
    max-width: none;
  }
}


/* =====================
   FUTURE LAW
===================== */

.future-law {

  position: relative;
  z-index: 2;

  max-width: 1100px;

  margin: 90px auto;

  padding: 0 24px;
}

.future-law-content {
  text-align: center;

  padding: 60px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.02)
    );

  border:
    1px solid rgba(186,136,46,0.16);

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.28);
}

.future-tag {

  display: inline-block;

  padding: 8px 14px;

  margin-bottom: 22px;

  background:
    rgba(186,136,46,0.12);

  border:
    1px solid rgba(186,136,46,0.22);

  color: #d8ab55;

  font-size: 0.82rem;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.future-law h2 {

  font-size: 2.4rem;

  line-height: 1.15;

  margin: 0 auto 24px;

  max-width: 700px;

  text-align: center;
}

.future-law p {

  max-width: 760px;

  margin: 0 auto;

  font-size: 1.05rem;

  line-height: 1.9;

  color:
    rgba(255,255,255,0.78);

  text-align: center;
}

.future-highlight {

  margin-top: 34px;

  color: #d8ab55 !important;

  font-size: 1.1rem !important;

  font-weight: 500;

  letter-spacing: 0.3px;
}

/* MOBILE */

@media (max-width: 900px) {

  .future-law-content {

    padding: 36px 26px;
  }

  .future-law h2 {

    font-size: 1.9rem;
  }
}
