:root {
  --trama: #74717f;
  --empatia: #b98295;
  --proceso: #e89598;
  --calma: #decdbf;
  --luz: #faf8f3;
  --white: #ffffff;
  --dark: #25212a;
  --text: #4f4a54;

  --font-title: "Lora", serif;
  --font-body: "Manrope", sans-serif;

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;

  --shadow-soft: 0 20px 50px rgba(116, 113, 127, 0.12);
  --transition: all 0.3s ease;
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--luz);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  color: var(--dark);
  line-height: 1.15;
}

.font-title{
   font-family: var(--font-title);
}

.section-padding {
  padding: 100px 0;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trama);
  margin-bottom: 18px;
}

h2 span,
h1 span {
  color: var(--empatia);
}

/* Botones */

.btn {
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.btn-primary-soft {
  background-color: var(--empatia);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(185, 130, 149, 0.25);
}

.btn-primary-soft:hover {
  background-color: var(--trama);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-soft {
  background-color: var(--trama);
  color: var(--white);
}

.btn-secondary-soft:hover {
  background-color: var(--empatia);
  color: var(--white);
}

.btn-outline-soft {
  border-color: var(--empatia);
  color: var(--empatia);
  background-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-soft:hover {
  background-color: var(--empatia);
  color: var(--white);
}

.link-arrow {
  color: var(--empatia);
  font-weight: 700;
  font-size: 0.9rem;
}

.link-arrow i {
  margin-left: 8px;
}

/* Header */

.site-header {
  padding: 14px 0;
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(116, 113, 127, 0.08);
}

.navbar {
  padding: 0;
}

.brand-logo {
  width: 155px;
  height: auto;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-link:hover {
  color: var(--empatia);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* Hero */

.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.95) 0%, rgba(250, 248, 243, 0.72) 42%, rgba(250, 248, 243, 0.1) 100%),
    url("../img/hero-tramas.webp") center right / cover no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -70px;
  width: 420px;
  height: 420px;
  background: url("img/isologo-tramas.svg") center / contain no-repeat;
  opacity: 0.16;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-content h1 {
  font-size: clamp(2.7em, 3em, 4em);
  margin-bottom: 30px;
}

.hero-content p {
  max-width: 520px;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 34px;
}

/* Sobre */

.about-section {
  background: var(--white);
  position: relative;
}

.image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin: 0;
}

.image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 24px;
}

.about-section p {
  font-size: 1rem;
  margin-bottom: 18px;
}

/* Servicios */

.services-section {
  background-color: var(--luz);
}

.service-card {
  height: 100%;
  background-color: var(--white);
  border: 1px solid rgba(116, 113, 127, 0.12);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(116, 113, 127, 0.06);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(185, 130, 149, 0.13);
  color: var(--trama);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 2rem;
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Empresas */

.companies-section {
  background: linear-gradient(135deg, #f7eef0, var(--luz));
}

.companies-content {
  padding: 110px 10vw;
  height: 100%;
}

.companies-content h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  margin-bottom: 24px;
}

.companies-content > p {
  max-width: 680px;
  font-size: 1.05rem;
}

.companies-image {
  height: 100%;
  min-height: 560px;
  margin: 0;
}

.companies-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-benefit {
  text-align: center;
}

.mini-benefit i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background-color: var(--white);
  color: var(--empatia);
  font-size: 1.4rem;
}

.mini-benefit p {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

/* Diferenciales */

.why-section {
  background-color: var(--white);
}

.why-card {
  text-align: center;
  padding: 20px;
}

.why-card i {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background-color: rgba(222, 205, 191, 0.35);
  color: var(--trama);
  font-size: 1.5rem;
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

.why-card p {
  font-size: 0.9rem;
}

/* Testimonios */

.testimonials-section {
  background-color: var(--white);
}

.testimonial-card {
  height: 100%;
  background-color: var(--luz);
  border-radius: var(--radius-md);
  padding: 30px;
  /* box-shadow: var(--shadow-soft); */
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.testimonial-head img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-head h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.testimonial-head span {
  font-size: 0.84rem;
  color: var(--empatia);
  font-weight: 700;
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Turnos */

.booking-section {
  background: linear-gradient(90deg, var(--luz), #f6eded);
}

.booking-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.booking-placeholder {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  display: grid;
  place-items: center;
}

.calendar-box {
  width: 100%;
  min-height: 250px;
  /* border: 1px dashed rgba(116, 113, 127, 0.3); */
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: var(--trama);
}

.calendar-box span {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Instagram */

.instagram-section {
  background-color: var(--white);
}

.instagram-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 4px;
}

.instagram-section p {
  color: var(--empatia);
  font-weight: 700;
}

.instagram-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.instagram-img:hover {
  transform: scale(1.03);
}

/* Footer */

.site-footer {
  background-color: var(--white);
  padding: 80px 0 0;
}

.footer-logo {
  width: 180px;
  margin-bottom: 24px;
}

.footer-claim {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--trama);
}

.footer-claim span {
  color: var(--empatia);
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  font-size: 0.9rem;
  color: var(--text);
}

.site-footer a.btn-outline-soft:hover{
  color:white!important;
}

.site-footer a:hover {
  color: var(--empatia);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background-color: var(--trama);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.footer-social a:hover {
  background-color: var(--empatia);
  color: var(--white);
}

.footer-bottom {
  margin-top: 70px;
  padding: 18px 0;
  border-top: 1px solid rgba(116, 113, 127, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
  color: var(--white);
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199px) {
  .companies-content {
    padding: 90px 6vw;
  }
}

@media (max-width: 991px) {
  .site-header {
    background-color: var(--luz);
  }

  .navbar-collapse {
    background-color: var(--luz);
    margin-top: 18px;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

  .nav-link {
    padding: 10px 0;
  }

  .hero-section {
    background-position: center;
  }

  .hero-section::after {
    width: 300px;
    height: 300px;
    right: -100px;
  }

  .image-card img {
    height: auto;
  }

  .companies-image {
    min-height: 420px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }

  .brand-logo {
    width: 135px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .companies-content {
    padding: 70px 24px;
  }

  .companies-image {
    min-height: 320px;
  }

  .booking-placeholder {
    padding: 18px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
}

@media (max-width: 575px) {
  .hero-content h1,
  .about-section h2,
  .companies-content h2,
  .booking-section h2 {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }
}

/* slider */
.testimonialsSwiper{
    padding-bottom:60px;
}

.swiper-slide{
    height:auto;
}

.testimonial-card{
    height:100%;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#b98295;
    opacity:.3;
}

.swiper-pagination-bullet-active{
    opacity:1;
    background:#b98295;
}

/* reservas */
    .professionals-page {
      padding-top: 130px;
      background:
        radial-gradient(circle at 8% 7%, rgba(185, 130, 149, 0.12), transparent 28%),
        linear-gradient(180deg, var(--luz) 0%, var(--white) 48%, #f7f0ed 100%);
    }

    .professionals-hero {
      padding: 70px 0 54px;
      text-align: center;
    }

    .professionals-hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      margin-bottom: 20px;
    }

    .professionals-hero p {
      max-width: 720px;
      margin: 0 auto;
      font-size: 1.05rem;
    }

    .specialty-pills {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .specialty-pill {
      padding: 9px 16px;
      border: 1px solid rgba(116, 113, 127, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--trama);
      font-size: 0.78rem;
      font-weight: 800;
    }

    .professionals-grid {
      padding-bottom: 40px;
    }

    .professional-card {
      height: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1px solid rgba(116, 113, 127, 0.12);
      border-radius: var(--radius-md);
      box-shadow: 0 18px 42px rgba(116, 113, 127, 0.09);
      transition: var(--transition);
    }

    .professional-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-soft);
    }

    .professional-photo {
      position: relative;
      height: 320px;
      overflow: hidden;
      background: var(--calma);
    }

    .professional-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .professional-photo::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 34%;
      background: linear-gradient(transparent, rgba(37, 33, 42, 0.22));
      pointer-events: none;
    }

    .professional-content {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 0 24px 26px;
      text-align: center;
    }

    .professional-icon {
      position: relative;
      z-index: 2;
      width: 68px;
      height: 68px;
      margin: -34px auto 18px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(116, 113, 127, 0.12);
      border-radius: 50%;
      background: var(--white);
      color: var(--empatia);
      box-shadow: 0 12px 26px rgba(116, 113, 127, 0.14);
      font-size: 1.45rem;
    }

    .professional-card h2 {
      min-height: 56px;
      margin-bottom: 8px;
      font-size: 1.45rem;
    }

    .professional-specialty {
      min-height: 38px;
      margin-bottom: 14px;
      color: var(--empatia);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .professional-description {
      margin-bottom: 18px;
      font-size: 0.88rem;
      line-height: 1.65;
    }

    .professional-meta {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin: auto 0 20px;
    }

    .professional-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      border-radius: 999px;
      background: var(--luz);
      color: var(--trama);
      font-size: 0.72rem;
      font-weight: 800;
    }

    .professional-card .btn {
      width: 100%;
      justify-content: center;
    }

    .booking-info {
      margin: 46px 0 100px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(116, 113, 127, 0.12);
      border-radius: var(--radius-md);
      box-shadow: 0 16px 38px rgba(116, 113, 127, 0.08);
    }

    .booking-info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      height: 100%;
      padding: 26px 30px;
    }

    .booking-info-item.border-start {
      border-color: rgba(116, 113, 127, 0.12) !important;
    }

    .booking-info-icon {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(185, 130, 149, 0.14);
      color: var(--empatia);
      font-size: 1.2rem;
    }

    .booking-info h3 {
      margin-bottom: 5px;
      font-family: var(--font-body);
      font-size: 0.96rem;
      font-weight: 800;
    }

    .booking-info p {
      margin-bottom: 0;
      font-size: 0.84rem;
      line-height: 1.55;
    }

    @media (max-width: 991px) {
      .professionals-page {
        padding-top: 92px;
      }

      .professional-card h2,
      .professional-specialty {
        min-height: auto;
      }

      .booking-info-item.border-start {
        border-top: 1px solid rgba(116, 113, 127, 0.12);
        border-left: 0 !important;
      }
    }

    @media (max-width: 575px) {
      .professionals-hero {
        padding: 55px 0 40px;
      }

      .professional-photo {
        height: 360px;
      }

      .booking-info-item {
        padding: 22px;
      }
    }