/*

Theme Name: Veterinaria Privet
Author: PHPPERU
Author URI: https://phpperu.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/


:root {
  --purple: #5a2390;
  --purple-dark: #4a1a6b;
  --teal: #73d0c4;
  --white: #ffffff;
  --text: #575757;
  --muted: #e9def3;
  --header-height: 88px;
  --container: 1280px;
  --radius-full: 999px;
  --transition: all 0.25s ease;
  --hover-lift: translateY(-4px);
  --hover-shadow: 0 18px 40px rgba(0,0,0,0.25);
  --hover-transition: all 0.25s ease;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo img {
  width: 150px;
  height: auto;
}

.desktop-nav,
.desktop-only {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #6d6d6d;
  transition: var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 16px;
}

.mobile-menu-list {
  display: grid;
  gap: 10px;
}

.mobile-menu-list a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #767676;
}

.mobile-menu-list a.mobile-active {
  background: #f1ebf8;
  color: var(--purple);
}

.btn-mobile-wa {
  width: 100%;
  margin-top: 16px;
  background: var(--purple);
  color: #fff;
  min-height: 50px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.btn-mobile-wa img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(49, 18, 74, 0.82) 0%, rgba(59, 23, 87, 0.65) 42%, rgba(68, 29, 95, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 34px 0 36px;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-kicker-line {
  width: 30px;
  height: 2px;
  background: var(--teal);
}

.hero-kicker span:last-child {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 700;
}

.hero-title {
  max-width: 340px;
  margin-bottom: 16px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
}

.hero-accent {
  color: var(--teal);
}

.hero-text {
  max-width: 330px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.btn {
  min-height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--hover-transition);
  cursor: pointer;
}

.btn:hover {
  transform: var(--hover-lift);
  box-shadow: var(--hover-shadow);
}
/* .btn {
  min-height: 56px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
} */

.btn img {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}

.btn-primary img {
  filter: brightness(0) invert(1);
}

.btn-primary:hover {
  background: var(--purple-dark);
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn-outline:hover img {
  filter: brightness(0) invert(1);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-btn-outline img {
  width: 18px;
  height: 18px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-link img {
  width: 16px;
  height: 16px;
}

.hero-metrics {
  display: grid;
  gap: 16px;
  max-width: 320px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(115, 208, 196, 0.35);
  background: rgba(115, 208, 196, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon img {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

.metric-text strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}

.metric-text span {
  display: block;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.58);
}

.hero-scroll img {
  width: 13px;
  height: 13px;
  opacity: 0.75;
}

/* .floating-wa {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.floating-wa img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
} */

/* TABLET */
@media (min-width: 768px) {
  :root {
    --header-height: 92px;
  }

  .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .site-logo img {
    width: 170px;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-content {
    padding: 44px 0 54px;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-title {
    max-width: 520px;
    /* font-size: clamp(3.1rem, 6vw, 3.7rem); */
    font-size: 3.7rem;
    line-height: 1.06;
  }

  .hero-text {
    max-width: 510px;
    font-size: 1.05rem;
  }

  .hero-buttons {
    max-width: 560px;
  }

  .btn {
    min-height: 60px;
    font-size: 1.02rem;
  }

  .hero-metrics {
    max-width: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .metric-item {
    align-items: flex-start;
  }

  /* .floating-wa {
    width: 70px;
    height: 70px;
    right: 24px;
    bottom: 26px;
  } */
}

/* DESKTOP */
@media (min-width: 1100px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(var(--container), calc(100% - 96px));
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .desktop-nav,
  .desktop-only {
    display: flex;
  }

  .desktop-nav {
    flex: 1;
    justify-content: center;
  }

  .desktop-menu { 
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-menu a {
  position: relative;
  color: #707070;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}

/* Hover normal */
.desktop-menu a:hover {
  color: var(--purple);
}

.desktop-menu a:hover::after {
  width: 100%;
}

/* Active manual si todavía usas .is-active */
.desktop-menu a.is-active {
  color: var(--purple);
}

.desktop-menu a.is-active::after {
  width: 100%;
}

/* Active automático de WordPress */
.desktop-menu .current-menu-item > a,
.desktop-menu .current_page_item > a,
.desktop-menu .current-menu-ancestor > a {
  color: var(--purple);
}

.desktop-menu .current-menu-item > a::after,
.desktop-menu .current_page_item > a::after,
.desktop-menu .current-menu-ancestor > a::after {
  width: 100%;
}

.mobile-menu-list .current-menu-item > a,
.mobile-menu-list .current_page_item > a,
.mobile-menu-list .current-menu-ancestor > a {
  background: #f3ebfa;
  color: var(--purple);
}
  /* .desktop-menu {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  .desktop-menu a {
    position: relative;
    color: #707070;
    font-size: 0.98rem;
    font-weight: 500;
  }

  .desktop-menu a.is-active,
  .desktop-menu a:hover {
    color: var(--purple);
  }

  .desktop-menu a.is-active::after,
  .desktop-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 100%;
    height: 2px;
    background: var(--teal);
  } */

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-wa {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-wa img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }

  .btn-header {
    min-height: 46px;
    padding: 0 26px;
    background: var(--purple);
    color: #fff;
    font-size: 0.98rem;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
  }

  .hero-content {
    min-height: calc(100vh - var(--header-height));
    padding: 70px 0 78px;
  }

  .hero-copy {
    max-width: 660px;
    margin-left: 28px;
  }

  .hero-title {
    max-width: 620px;
    /* font-size: clamp(4.1rem, 5vw, 5.6rem); */
    font-size: 3.7rem;
    line-height: 1.01;
    margin-bottom: 22px;
  }

  .hero-text {
    max-width: 560px;
    font-size: 1.08rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    min-width: 245px;
  }

  .hero-link {
    justify-content: flex-start;
    min-height: auto;
  }

  .hero-metrics {
    max-width: 720px;
    display: flex;
    gap: 28px;
  }

  .metric-item {
    min-width: 180px;
    align-items: center;
  }

  .desktop-scroll {
    display: flex;
  }

  /* .floating-wa {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 72px;
    height: 72px;
  } */
}


.metric-icon {
  color: var(--teal);
}
/* para cards */

.card-hover {
  transition: var(--hover-transition);
}

.card-hover:hover {
  transform: var(--hover-lift);
  box-shadow: var(--hover-shadow);
}

.btn img {
  transition: transform 0.25s ease;
}

.btn:hover img {
  transform: scale(1.1);
}




/* SERVICES */
.services-section {
  padding: 96px 0;
  background: #f9f9f9;
}

.services-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.services-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.services-title {
  margin-bottom: 14px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  color: #2b2b2b;
}

.services-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #7a7a7a;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px 24px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(115, 208, 196, 0.45);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #eef8f6;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-card__icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.06);
}

.service-card__title {
  margin-bottom: 10px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.service-card__text {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #7a7a7a;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-card__link:hover {
  gap: 12px;
}

.services-cta {
  margin-top: 40px;
  text-align: center;
}

.btn-services-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.btn-services-all:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* TABLET */
@media (min-width: 768px) {
  .services-section {
    padding: 110px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-card {
    padding: 30px 26px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .service-card {
    min-height: 292px;
    padding: 34px 28px;
  }

  .services-cta {
    margin-top: 46px;
  }
}

/* WHY SECTION */
.why-section {
  padding: 88px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.why-media {
  position: relative;
}

.why-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 4 / 3;
}

.why-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-badge {
  position: absolute;
  right: -8px;
  bottom: -14px;
  min-width: 160px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.why-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-badge span {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.why-content {
  width: 100%;
}

.why-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.why-title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: #2f2f2f;
}

.why-text {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
  color: #7d7d7d;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f4eef9;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature__icon svg {
  width: 22px;
  height: 22px;
}

.why-feature__body h3 {
  margin-bottom: 6px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
  color: #333333;
}

.why-feature__body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #7d7d7d;
}

/* TABLET */
@media (min-width: 768px) {
  .why-section {
    padding: 100px 0;
  }

  .why-grid {
    gap: 44px;
  }

  .why-badge {
    right: -14px;
    bottom: -18px;
    min-width: 180px;
    padding: 20px 22px;
  }

  .why-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 64px;
  }

  .why-image-wrap {
    border-radius: 30px;
  }

  .why-badge {
    right: -22px;
    bottom: -18px;
    min-width: 190px;
    padding: 22px 24px;
  }

  .why-title {
    max-width: 680px;
  }

  .why-text {
    max-width: 680px;
    margin-bottom: 34px;
  }
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 96px 0;
  background: var(--purple);
  overflow: hidden;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 44px;
}

.testimonials-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.testimonials-title {
  color: #fff;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.testimonials-line {
  width: 64px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--teal);
}


.testimonials-slider {
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 8px;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  flex: 0 0 100%;
  background: #f4eef7;
  border-radius: 24px;
  padding: 28px 24px;
  border: 2px solid transparent;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
  opacity: 0.92;
}

.testimonial-card.is-active {
  border-color: var(--teal);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
  opacity: 1;
  background: #fff;
}



.testimonial-quote {
  color: var(--teal);
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 700;
}

.testimonial-text {
  color: #5f5f5f;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-stars {
  color: var(--teal);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-user strong {
  display: block;
  color: #353535;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-user span {
  display: block;
  color: #8b8b8b;
  font-size: 0.82rem;
  line-height: 1.35;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

.testimonial-dot.is-active {
  width: 24px;
  background: var(--teal);
}

/* TABLET */
@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .testimonial-card {
    min-width: calc((100% - 60px) / 4);
    flex: 0 0 calc((100% - 60px) / 4);
  }
}



/* PLANS SECTION */
.plans-section {
  padding: 96px 0;
  background: #ffffff;
}

.plans-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.plans-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.plans-title {
  margin-bottom: 14px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  color: #2f2f2f;
}

.plans-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #7d7d7d;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px 24px;
  border: 1.5px solid #e8e8e8;
  border-radius: 28px;
  background: #fff;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.plan-card--featured {
  border: 1.5px solid var(--purple);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-card__top {
  margin-bottom: 22px;
}

.plan-card__title {
  margin-bottom: 8px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.plan-card__desc {
  min-height: 48px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #7c7c7c;
}

.plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 14px;
}

.plan-card__price strong {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: #252525;
}

.plan-card__price span {
  font-size: 0.95rem;
  color: #9b9b9b;
  margin-bottom: 6px;
}

.plan-card__list {
  flex: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #666666;
}

.plan-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef8f6;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}

.plan-btn {
  min-height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 22px;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.plan-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.plan-btn--outline-purple {
  border: 2px solid var(--purple);
  color: var(--purple);
  background: #fff;
}

.plan-btn--outline-purple:hover {
  background: var(--purple);
  color: #fff;
}

.plan-btn--solid-purple {
  border: 2px solid var(--purple);
  background: var(--purple);
  color: #fff;
}

.plan-btn--solid-purple:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.plan-btn--solid-teal {
  border: 2px solid var(--teal);
  background: var(--teal);
  color: #fff;
}

.plan-btn--solid-teal:hover {
  background: #5fc0b3;
  border-color: #5fc0b3;
}

.plans-note {
  margin-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #b1b1b1;
}

.plan-btn--outline-teal {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: #fff;
}

.plan-btn--outline-teal:hover {
  background: var(--teal);
  color: #fff;
}

/* TABLET */
@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .plan-card {
    padding: 30px 24px 24px;
  }

  .plan-card--featured {
    transform: translateY(-10px);
  }

  .plan-card--featured:hover {
    transform: translateY(-14px);
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .plans-section {
    padding: 108px 0;
  }

  .plans-grid {
    gap: 28px;
  }

  .plan-card {
    padding: 34px 26px 24px;
  }

  .plan-card__title {
    font-size: 1.9rem;
  }

  .plan-card__price strong {
    font-size: 3.2rem;
  }
}


/* CTA FINAL */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, #eef8f6 0%, #ffffff 45%, #f7effb 100%);
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.cta-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.cta-title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.12;
  color: #2f2f2f;
}

.cta-text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #727272;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 42px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
  background: #5fc0b3;
}

.cta-button__icon {
  width: 28px;
  height: 28px;
  transition: transform 0.28s ease;
}

.cta-button:hover .cta-button__icon {
  transform: scale(1.08);
}

.cta-note {
  margin-top: 18px;
  font-size: 1rem;
  color: #8a8a8a;
}

.cta-note a {
  color: var(--purple);
  font-weight: 500;
}

.cta-note a:hover {
  text-decoration: underline;
}

/* PATTERN */
.cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
}

.cta-paw {
  position: absolute;
  font-size: 2.2rem;
  color: #b9a8c8;
  line-height: 1;
  user-select: none;
}

.cta-paw--1 { top: 2%; left: 0.5%; transform: rotate(-18deg); }
.cta-paw--2 { top: 12%; left: 43%; transform: rotate(18deg); }
.cta-paw--3 { top: 8%; right: 34%; transform: rotate(-24deg); }
.cta-paw--4 { top: 52%; right: 8%; transform: rotate(24deg); }
.cta-paw--5 { bottom: 12%; left: 16%; transform: rotate(-16deg); }
.cta-paw--6 { bottom: 16%; left: 40%; transform: rotate(22deg); }
.cta-paw--7 { top: 66%; left: 72%; transform: rotate(-28deg); }
.cta-paw--8 { top: 34%; left: 70%; transform: rotate(14deg); }

/* TABLET */
@media (max-width: 991px) {
  .cta-section {
    padding: 84px 0;
  }

  .cta-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    min-height: 68px;
    padding: 0 34px;
    font-size: 1.15rem;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .cta-section {
    padding: 72px 0;
  }

  .cta-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.15;
  }

  .cta-text {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .cta-button {
    width: 100%;
    min-height: 64px;
    padding: 0 24px;
    font-size: 1.08rem;
  }

  .cta-button__icon {
    width: 24px;
    height: 24px;
  }

  .cta-note {
    font-size: 0.95rem;
  }

  .cta-paw {
    font-size: 1.8rem;
  }
}

/* FOOTER */
.site-footer {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  color: #666666;
}

.site-footer__top {
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-logo img {
  width: 92px;
  height: auto;
}

.footer-brand__text {
  max-width: 310px;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #777777;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  background: #fff;
  color: #7d7d7d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-social:hover {
  transform: translateY(-3px);
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.footer-title {
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2f2f2f;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: #777777;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--purple);
}

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #777777;
  line-height: 1.6;
}

.footer-contact__icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--teal);
  margin-top: 2px;
}

.footer-contact__icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact a {
  color: #777777;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--purple);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-wa-btn svg {
  width: 16px;
  height: 16px;
}

.footer-wa-btn:hover {
  transform: translateY(-3px);
  background: #5fc0b3;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.site-footer__bottom {
  border-top: 1px solid #e6e6e6;
}

.footer-bottom-wrap {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-wrap p {
  font-size: 0.82rem;
  color: #a0a0a0;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.82rem;
  color: #a0a0a0;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #666666;
}

/* TABLET */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 42px;
  }

  .footer-bottom-wrap {
    flex-direction: row;
  }

  .footer-bottom-wrap p {
    text-align: left;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .site-footer__top {
    padding: 78px 0 58px;
  }

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 1.05fr 1.2fr;
    gap: 54px;
  }
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 14px;
}

.floating-whatsapp__label {
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #6f6f6f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.floating-whatsapp__button {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.floating-whatsapp__button svg {
  width: 30px;
  height: 30px;
  transition: transform 0.28s ease;
}

.floating-whatsapp:hover .floating-whatsapp__label {
  opacity: 1;
  transform: translateX(0);
}

.floating-whatsapp:hover .floating-whatsapp__button {
  transform: translateY(-3px) scale(1.04);
  background: #5fc0b3;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  animation-play-state: paused;
}

.floating-whatsapp:hover .floating-whatsapp__button svg {
  transform: scale(1.08);
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  }
}

/* TABLET */
@media (max-width: 991px) {
  .floating-whatsapp {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .floating-whatsapp__button {
    width: 66px;
    height: 66px;
    min-width: 66px;
  }

  .floating-whatsapp__button svg {
    width: 28px;
    height: 28px;
  }

  .floating-whatsapp__label {
    font-size: 0.95rem;
    padding: 13px 16px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp__button {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .floating-whatsapp__button svg {
    width: 26px;
    height: 26px;
  }

  .floating-whatsapp__label {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-radius: 12px;
  }
}



/* SERVICES HERO */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 96px;
  background: var(--purple);
}

.services-hero__bg,
.services-hero__bg img,
.services-hero__overlay {
  position: absolute;
  inset: 0;
}

.services-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.22;
}

.services-hero__overlay {
  background: rgba(74, 26, 107, 0.82);
}

.services-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.services-hero__title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.9rem);
  line-height: 1.06;
  color: #ffffff;
}

.services-hero__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* TABLET */
@media (max-width: 991px) {
  .services-hero {
    padding: 124px 0 82px;
  }

  .services-hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }

  .services-hero__text {
    font-size: 1.02rem;
    max-width: 640px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .services-hero {
    padding: 112px 0 72px;
  }

  .services-hero__kicker {
    font-size: 0.72rem;
    margin-bottom: 14px;
  }

  .services-hero__title {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
    line-height: 1.12;
  }

  .services-hero__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}




.hero-btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fff;
}

.header-wa,
.btn-whatsapp-icon {
  color: #fff;
}

.header-wa svg,
.btn-whatsapp-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fff;
}



/* servicios 2 */

/* SERVICES CATALOG */
.services-catalog {
  padding: 72px 0 96px;
  background: #ffffff;
  min-height: 100vh;
}

.services-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
}

.service-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f3f3f3;
  color: #6f6f6f;
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-filter svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-filter:hover {
  transform: translateY(-2px);
  background: #f3ebfa;
  color: var(--purple);
}

.service-filter.is-active {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
}

.services-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 28px;
  border-radius: 24px;
  border: 1px solid #ececec;
  background: #fafafa;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.service-detail-card.card-hover:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.service-detail-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f2e8fa;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.service-detail-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-detail-card:hover .service-detail-card__icon {
  background: var(--purple);
  color: #fff;
  transform: scale(1.06);
}

.service-detail-card:hover .service-detail-card__title {
  color: var(--purple);
}
.service-detail-card__title {
  margin-bottom: 8px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
  color: #2f2f2f;
  transition: color 0.28s ease;
}


.service-detail-card__mini {
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--teal);
}

.service-detail-card__text {
  flex: 1;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: #777777;
}

.service-detail-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-detail-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: 0.98rem;
  font-weight: 500;
  transition: gap 0.25s ease;
}

.service-detail-card__link:hover {
  gap: 12px;
}

.service-detail-card__faq {
  font-size: 0.82rem;
  color: #b0b0b0;
  white-space: nowrap;
}

/* TABLET */
@media (min-width: 768px) {
  .services-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .services-catalog {
    padding: 84px 0 110px;
  }

  .services-catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
}

/* SERVICES HELP CTA */
.services-help-cta {
  padding: 84px 0;
  background: #eef8f6;
}

.services-help-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.services-help-cta__title {
  margin-bottom: 16px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: #2f2f2f;
}

.services-help-cta__text {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.75;
  color: #767676;
}

.services-help-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.services-help-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.services-help-cta__button:hover {
  transform: translateY(-4px);
  background: #5fc0b3;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.services-help-cta__button:hover svg {
  transform: scale(1.08);
}

/* TABLET */
@media (max-width: 991px) {
  .services-help-cta {
    padding: 76px 0;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .services-help-cta {
    padding: 68px 0;
  }

  .services-help-cta__title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .services-help-cta__text {
    font-size: 0.96rem;
    margin-bottom: 26px;
  }

  .services-help-cta__button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
  }
}

.btn-mobile-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-panel .btn-mobile-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* SHOP HERO */
.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 96px;
  background: var(--purple);
}

.shop-hero__bg,
.shop-hero__bg img,
.shop-hero__overlay {
  position: absolute;
  inset: 0;
}

.shop-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.22;
}

/* .shop-hero__overlay {
  background: rgba(74, 26, 107, 0.82);
} */
.shop-hero__overlay {
  background: radial-gradient(
    circle at center,
    rgba(74, 26, 107, 0.55) 0%,
    rgba(74, 26, 107, 0.35) 25%,
    rgba(74, 26, 107, 0.18) 50%,
    rgba(74, 26, 107, 0.06) 70%,
    rgba(74, 26, 107, 0) 100%
  );
}

.shop-hero__title,
.shop-hero__text {
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.shop-hero .container {
  position: relative;
  z-index: 2;
}

.shop-hero__content {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.shop-hero__kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.shop-hero__title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1.06;
  color: #ffffff;
}

.shop-hero__accent {
  color: var(--teal);
}

.shop-hero__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* TABLET */
@media (max-width: 991px) {
  .shop-hero {
    padding: 124px 0 82px;
  }

  .shop-hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }

  .shop-hero__text {
    font-size: 1.02rem;
    max-width: 640px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .shop-hero {
    padding: 112px 0 72px;
  }

  .shop-hero__kicker {
    font-size: 0.72rem;
    margin-bottom: 14px;
  }

  .shop-hero__title {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
    line-height: 1.12;
  }

  .shop-hero__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* SHOP CATALOG */
.shop-catalog {
  padding: 72px 0 96px;
  background: #ffffff;
}

.shop-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}

.shop-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f1f1f1;
  color: #6d6d6d;
  font-size: 0.96rem;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-filter svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.shop-filter:hover {
  transform: translateY(-2px);
  background: #f3ebfa;
  color: var(--purple);
}

.shop-filter.is-active {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.shop-catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ececec;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 208, 196, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.shop-product-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f8f8;
}

.shop-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.shop-product-card:hover .shop-product-card__image img {
  transform: scale(1.05);
}

.shop-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
}

.shop-product-card__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef8f6;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 500;
}

.shop-product-card__title {
  margin-bottom: 8px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.shop-product-card__mini {
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--teal);
}

.shop-product-card__text {
  flex: 1;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #7a7a7a;
}

.shop-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-product-card__price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--purple);
}

.shop-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 0.92rem;
  font-weight: 500;
}

.shop-product-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #efe4f8;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.shop-product-card:hover .shop-product-card__arrow {
  background: var(--purple);
  color: #fff;
  transform: translateX(2px);
}

/* TABLET */
@media (min-width: 768px) {
  .shop-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .shop-catalog {
    padding: 84px 0 110px;
  }

  .shop-catalog__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .shop-product-card__title {
    font-size: 1.45rem;
  }

  .shop-product-card__price {
    font-size: 1.9rem;
  }
}

/* SHOP ADVICE CTA */
.shop-advice-cta {
  padding: 52px 0;
  background: linear-gradient(90deg, var(--purple) 0%, #4e1d72 100%);
}

.shop-advice-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.shop-advice-cta__content {
  max-width: 760px;
}

.shop-advice-cta__title {
  margin-bottom: 12px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: #ffffff;
}

.shop-advice-cta__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.shop-advice-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}

.shop-advice-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.shop-advice-cta__button:hover {
  transform: translateY(-4px);
  background: #5fc0b3;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.shop-advice-cta__button:hover svg {
  transform: scale(1.08);
}

/* TABLET */
@media (min-width: 768px) {
  .shop-advice-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .shop-advice-cta {
    padding: 44px 0;
  }

  .shop-advice-cta__title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
  }

  .shop-advice-cta__text {
    font-size: 0.96rem;
  }

  .shop-advice-cta__button {
    width: 100%;
    min-height: 56px;
    padding: 0 24px;
  }
}

/* SHOP ADVICE CTA */
.shop-advice-cta {
  padding: 52px 0;
  background: linear-gradient(90deg, var(--purple) 0%, #4e1d72 100%);
}

.shop-advice-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.shop-advice-cta__content {
  max-width: 760px;
}

.shop-advice-cta__title {
  margin-bottom: 12px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: #ffffff;
}

.shop-advice-cta__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.shop-advice-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}

.shop-advice-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.shop-advice-cta__button:hover {
  transform: translateY(-4px);
  background: #5fc0b3;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.shop-advice-cta__button:hover svg {
  transform: scale(1.08);
}

/* TABLET */
@media (min-width: 768px) {
  .shop-advice-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .shop-advice-cta {
    padding: 44px 0;
  }

  .shop-advice-cta__title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
  }

  .shop-advice-cta__text {
    font-size: 0.96rem;
  }

  .shop-advice-cta__button {
    width: 100%;
    min-height: 56px;
    padding: 0 24px;
  }
}


/* ABOUT HERO */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__bg,
.about-hero__bg img,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(62, 24, 93, 0.82) 0%,
    rgba(74, 26, 107, 0.68) 42%,
    rgba(74, 26, 107, 0.18) 100%
  );
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero__content {
  max-width: 760px;
  padding-top: 136px;
  padding-bottom: 92px;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(115, 208, 196, 0.14);
  border: 1px solid rgba(115, 208, 196, 0.38);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-hero__title {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 1.04;
  color: #ffffff;
}

.about-hero__accent {
  color: var(--teal);
}

.about-hero__text {
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

/* TABLET */
@media (max-width: 991px) {
  .about-hero {
    min-height: 560px;
  }

  .about-hero__content {
    padding-top: 126px;
    padding-bottom: 84px;
  }

  .about-hero__title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
  }

  .about-hero__text {
    max-width: 620px;
    font-size: 1.02rem;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-hero {
    min-height: 500px;
  }

  .about-hero__content {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .about-hero__badge {
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  .about-hero__title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    line-height: 1.1;
  }

  .about-hero__text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* ABOUT METRICS */
.about-metrics {
  background: var(--purple);
  padding: 34px 0 38px;
}

.about-metrics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}

.about-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-metric__value {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  color: #ffffff;
}

.about-metric__value span:last-child {
  font-size: 0.9em;
}

.about-metric__label {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--teal);
}

/* TABLET */
@media (min-width: 768px) {
  .about-metrics {
    padding: 38px 0 42px;
  }

  .about-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .about-metrics {
    padding: 42px 0 46px;
  }

  .about-metrics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .about-metric__label {
    font-size: 1.05rem;
  }
}

/* SECTION */
.about-info {
  padding: 80px 0;
  background: #ffffff;
}

/* GRID */
.about-info__grid {
  display: grid;
  gap: 48px;
}

/* TEXT */
.about-info__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3e8ff;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-info__title {
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f2937;
}

.about-info__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 18px;
}

/* CARDS CONTAINER */
.about-info__cards {
  display: grid;
  gap: 20px;
}

/* CARD BASE */
.about-card {
  border-radius: 20px;
  padding: 26px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

/* ICON */
.about-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.about-card__icon svg {
  width: 20px;
  height: 20px;
}

/* TEXT */
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

/* VARIANTES */
.about-card--purple {
  background: #f5f3ff;
  border-color: #e9d5ff;
}

.about-card--purple .about-card__icon {
  background: var(--purple);
  color: #fff;
}

.about-card--teal {
  background: #ecfeff;
  border-color: #ccfbf1;
}

.about-card--teal .about-card__icon {
  background: var(--teal);
  color: #fff;
}

/* HOVER (MISMO SISTEMA GLOBAL) */
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.about-card--purple:hover {
  border-color: var(--purple);
}

.about-card--teal:hover {
  border-color: var(--teal);
}

/* RESPONSIVE */
@media (min-width: 992px) {
  .about-info__grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 64px;
  }

  .about-info {
    padding: 110px 0;
  }
}

/* ABOUT VALUES */
.about-values {
  padding: 84px 0;
  background: #fafafa;
}

.about-values__heading {
  text-align: center;
  margin-bottom: 48px;
}

.about-values__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #dff3ef;
  color: #4f9f96;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-values__title {
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.15;
  color: #2f2f2f;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.value-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px 26px;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.value-card:hover {
  border-color: rgba(90, 35, 144, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.value-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #f2e8fa;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition:
    background-color 0.28s ease,
    color 0.28s ease;
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.value-card:hover .value-card__icon {
  background: var(--purple);
  color: #ffffff;
}

.value-card__title {
  margin-bottom: 10px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.value-card__text {
  font-size: 0.98rem;
  line-height: 1.72;
  color: #737373;
}

/* TABLET */
@media (min-width: 768px) {
  .about-values {
    padding: 96px 0;
  }

  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .about-values {
    padding: 108px 0;
  }

  .about-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}
/* ABOUT FINAL CTA */
.about-final-cta {
  padding: 76px 0;
  background: var(--purple);
}

.about-final-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-final-cta__title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.15;
  color: #ffffff;
}

.about-final-cta__text {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.about-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.about-final-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.about-final-cta__button:hover {
  transform: translateY(-4px);
  background: #5fc0b3;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.about-final-cta__button:hover svg {
  transform: scale(1.08);
}

/* TABLET */
@media (max-width: 991px) {
  .about-final-cta {
    padding: 68px 0;
  }

  .about-final-cta__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-final-cta {
    padding: 60px 0;
  }

  .about-final-cta__title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.2;
  }

  .about-final-cta__text {
    max-width: 320px;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .about-final-cta__button {
    width: 100%;
    max-width: 280px;
    min-height: 56px;
    padding: 0 22px;
  }
}

/* BLOG HERO */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 74px;
  background: var(--purple);
}

.blog-hero__shapes {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.blog-hero__circle {
  position: absolute;
  border-radius: 50%;
}

.blog-hero__circle--right {
  width: 380px;
  height: 380px;
  top: -36px;
  right: -34px;
  background: #8a63b5;
}

.blog-hero__circle--left {
  width: 260px;
  height: 260px;
  left: 42px;
  bottom: 4px;
  background: #ffffff;
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero__content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(115, 208, 196, 0.14);
  border: 1px solid rgba(115, 208, 196, 0.38);
  color: #8dd9cf;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-hero__title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.05;
  color: #ffffff;
}

.blog-hero__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(236, 223, 246, 0.9);
}

/* TABLET */
@media (max-width: 991px) {
  .blog-hero {
    padding: 118px 0 64px;
  }

  .blog-hero__circle--right {
    width: 320px;
    height: 320px;
    top: -24px;
    right: -54px;
  }

  .blog-hero__circle--left {
    width: 230px;
    height: 230px;
    left: 12px;
    bottom: 10px;
  }

  .blog-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
  }

  .blog-hero__text {
    max-width: 640px;
    font-size: 1.02rem;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .blog-hero {
    padding: 110px 0 58px;
  }

  .blog-hero__badge {
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  .blog-hero__circle--right {
    width: 260px;
    height: 260px;
    top: 14px;
    right: -70px;
  }

  .blog-hero__circle--left {
    width: 240px;
    height: 240px;
    left: -20px;
    bottom: 18px;
  }

  .blog-hero__title {
    font-size: clamp(2.25rem, 9vw, 3.6rem);
    line-height: 1.1;
  }

  .blog-hero__text {
    max-width: 330px;
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* BLOG FEATURED */
/* BLOG FEATURED */
.blog-featured {
  padding: 32px 0 72px;
  background: #ffffff;
}

.blog-featured__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e8dcef;
  background: #f6eff9;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.blog-featured__card:hover {
  border-color: #d7bbea;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.blog-featured__media {
  min-height: 220px;
  overflow: hidden;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.blog-featured__card:hover .blog-featured__media img {
  transform: scale(1.03);
}

.blog-featured__content {
  padding: 24px 24px 26px;
}

.blog-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-featured__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.blog-featured__tag--purple {
  background: var(--purple);
  color: #ffffff;
  font-weight: 600;
}

.blog-featured__tag--teal {
  background: #d8f1ed;
  color: #5b9f96;
  font-weight: 500;
}

.blog-featured__title {
  margin-bottom: 14px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.18;
  color: #2f2f2f;
  transition: color 0.28s ease;
}

.blog-featured__card:hover .blog-featured__title {
  color: var(--purple);
}

.blog-featured__lead {
  margin-bottom: 12px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--teal);
  font-weight: 500;
}

.blog-featured__text {
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.68;
  color: #7a7a7a;
  max-width: 560px;
}

.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.blog-featured__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #9a9a9a;
}

.blog-featured__meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog-featured__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.blog-featured__button-arrow {
  transition: transform 0.28s ease;
}

.blog-featured__card:hover .blog-featured__button {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.blog-featured__card:hover .blog-featured__button-arrow {
  transform: translateX(3px);
}

/* TABLET */
@media (min-width: 768px) {
  .blog-featured {
    padding: 40px 0 76px;
  }

  .blog-featured__media {
    min-height: 280px;
  }

  .blog-featured__content {
    padding: 28px 28px 30px;
  }

  .blog-featured__title {
    font-size: clamp(2.1rem, 3vw, 3.2rem);
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .blog-featured {
    padding: 36px 0 84px;
  }

  .blog-featured__card {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 450px;
    align-items: stretch;
  }

  .blog-featured__media {
    min-height: 450px;
  }

  .blog-featured__media img {
    object-position: center top;
  }

  .blog-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 40px 36px;
  }

  .blog-featured__title {
    font-size: clamp(2.3rem, 2.8vw, 3.4rem);
    max-width: 560px;
  }

  .blog-featured__text {
    max-width: 520px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .blog-featured {
    padding: 28px 0 56px;
  }

  .blog-featured__card {
    border-radius: 26px;
  }

  .blog-featured__media {
    min-height: 120px;
  }

  .blog-featured__content {
    padding: 20px 18px 22px;
  }

  .blog-featured__tags {
    margin-bottom: 14px;
  }

  .blog-featured__title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .blog-featured__lead,
  .blog-featured__text {
    font-size: 0.92rem;
  }

  .blog-featured__meta {
    gap: 10px 12px;
    margin-bottom: 20px;
  }

  .blog-featured__meta span {
    font-size: 0.8rem;
  }

  .blog-featured__button {
    width: 100%;
    justify-content: center;
  }
}


/* BLOG GRID */
.blog-grid-section {
  padding: 26px 0 80px;
  background: #fafafa;
}

.blog-grid__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-filter {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #6c6c6c;
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.blog-filter:hover {
  background: #f5eef9;
  border-color: #d9c6e8;
  color: var(--purple);
  transform: translateY(-1px);
}

.blog-filter.is-active {
  background: var(--purple);
  border-color: var(--purple);
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.blog-card:hover {
  border-color: #dccae9;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.blog-card__image {
  display: block;
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 18px 20px 18px;
}

.blog-card__topmeta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2e8fa;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
}

.blog-card__reading {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #9b9b9b;
}

.blog-card__reading svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog-card__title {
  margin-bottom: 10px;
}

.blog-card__title a {
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.45rem;
  line-height: 1.35;
  color: #2f2f2f;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-card__title a {
  color: var(--purple);
}

.blog-card__lead {
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--teal);
  font-weight: 500;
}

.blog-card__excerpt {
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #808080;
}

.blog-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.blog-card__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.blog-card__author-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #f2e8fa;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-card__author-icon svg {
  width: 14px;
  height: 14px;
}

.blog-card__author span:last-child,
.blog-card__date {
  font-size: 0.82rem;
  color: #9a9a9a;
}

.blog-card__date {
  white-space: nowrap;
}

/* TABLET */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .blog-grid-section {
    padding: 32px 0 96px;
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .blog-card__title a {
    font-size: 1.3rem;
  }

  .blog-card__image {
    height: 174px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .blog-grid-section {
    padding: 20px 0 64px;
  }

  .blog-grid__filters {
    gap: 10px;
    margin-bottom: 24px;
  }

  .blog-filter {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .blog-card__image {
    height: 176px;
  }

  .blog-card__body {
    padding: 16px 16px 18px;
  }

  .blog-card__title a {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .blog-card__lead,
  .blog-card__excerpt {
    font-size: 0.92rem;
  }

  .blog-card__bottom {
    gap: 10px;
  }

  .blog-card__author span:last-child,
  .blog-card__date {
    font-size: 0.8rem;
  }
}

/* BLOG FINAL CTA */
.blog-final-cta {
  padding: 74px 0;
  background: var(--purple);
}

.blog-final-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.blog-final-cta__title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.16;
  color: #ffffff;
}

.blog-final-cta__text {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(236, 223, 246, 0.88);
}

.blog-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.blog-final-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.blog-final-cta__button:hover {
  transform: translateY(-4px);
  background: #5fc0b3;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.blog-final-cta__button:hover svg {
  transform: scale(1.08);
}

/* TABLET */
@media (max-width: 991px) {
  .blog-final-cta {
    padding: 66px 0;
  }

  .blog-final-cta__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .blog-final-cta {
    padding: 56px 0;
  }

  .blog-final-cta__title {
    font-size: clamp(1.95rem, 8vw, 2.8rem);
    line-height: 1.2;
  }

  .blog-final-cta__text {
    max-width: 320px;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .blog-final-cta__button {
    width: 100%;
    max-width: 290px;
    min-height: 56px;
    padding: 0 20px;
  }
}

/* CONTACT INFO CARDS */
.contact-info-cards {
  padding: 64px 0 84px;
  background: #ffffff;
}

.contact-info-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 24px 24px 22px;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.contact-info-card:hover {
  border-color: rgba(90, 35, 144, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #f2e8fa;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition:
    background-color 0.28s ease,
    color 0.28s ease;
}

.contact-info-card__icon svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.contact-info-card:hover .contact-info-card__icon {
  background: var(--purple);
  color: #ffffff;
}

.contact-info-card__title {
  margin-bottom: 10px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.contact-info-card__text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #747474;
  margin-bottom: 2px;
}

.contact-info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 500;
  transition: gap 0.25s ease, color 0.25s ease;
}

.contact-info-card__link:hover {
  gap: 12px;
  color: #5b9f96;
}

/* TABLET */
@media (min-width: 768px) {
  .contact-info-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .contact-info-cards {
    padding: 72px 0 96px;
  }

  .contact-info-cards__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .contact-info-card {
    min-height: 208px;
  }
}

/* CONTACT MAIN SECTION */
.contact-main-section {
  padding: 70px 0 90px;
  background: #fafafa;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}

.contact-section-title {
  margin-bottom: 10px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: #2f2f2f;
}

.contact-section-subtitle {
  margin-bottom: 28px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #808080;
}

/* FORM */
.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.form-group label span {
  color: #8a8a8a;
}

.form-group label small {
  margin-left: 6px;
  font-size: 0.84em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #b0b0b0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 14px;
  background: #ffffff;
  color: #3a3a3a;
  font-size: 1rem;
  font-family: inherit;
  padding: 15px 16px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8b8b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(90, 35, 144, 0.38);
  box-shadow: 0 0 0 3px rgba(90, 35, 144, 0.08);
}

.contact-submit-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  background: var(--purple);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: var(--purple-dark);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.contact-form-note {
  text-align: center;
  font-size: 0.82rem;
  color: #b0b0b0;
}

.contact-form-note a {
  color: var(--teal);
  font-weight: 500;
}

.contact-form-note a:hover {
  text-decoration: underline;
}

/* MAP */
.contact-map-wrap {
  height: 340px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dddddd;
  background: #ffffff;
}

.contact-location-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.contact-map-btn {
  min-height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-map-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.contact-map-btn--purple {
  background: var(--purple);
  color: #ffffff;
}

.contact-map-btn--purple:hover {
  background: var(--purple-dark);
}

.contact-map-btn--teal {
  background: var(--teal);
  color: #ffffff;
}

.contact-map-btn--teal:hover {
  background: #5fc0b3;
}

/* TABLET */
@media (min-width: 768px) {
  .contact-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-location-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map-wrap {
    height: 380px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .contact-main-section {
    padding: 84px 0 110px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
  }

  .contact-map-wrap {
    height: 420px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .contact-main-section {
    padding: 54px 0 72px;
  }

  .contact-section-title {
    font-size: clamp(1.95rem, 8vw, 2.8rem);
  }

  .contact-section-subtitle {
    margin-bottom: 22px;
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.96rem;
    padding: 14px 14px;
  }

  .contact-map-wrap {
    height: 330px;
  }
}

/* .desktop-menu .current-menu-item > a,
.desktop-menu .current_page_item > a {
  color: var(--purple);
}

.desktop-menu .current-menu-item > a::after,
.desktop-menu .current_page_item > a::after {
  width: 100%;
}

.mobile-menu-list .current-menu-item > a,
.mobile-menu-list .current_page_item > a {
  background: #f3ebfa;
  color: var(--purple);
} */


/* SINGLE BLOG HERO */
.single-blog-page {
  background: #ffffff;
}

.single-blog-hero {
  padding: 36px 0 42px;
  background: #ffffff;
}

.single-blog-hero__container {
  max-width: 920px;
}

.single-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 18px;
}

.single-blog-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
}

.single-blog-meta__item {
  font-size: 0.84rem;
  color: #9a9a9a;
}

.single-blog-title {
  margin-bottom: 14px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.12;
  color: #222222;
}

.single-blog-subtitle {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 1.16rem;
  line-height: 1.6;
  color: var(--teal);
  font-weight: 500;
}

.single-blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eeeeee;
}

.single-blog-author__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #f2e8fa;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-blog-author__icon svg {
  width: 20px;
  height: 20px;
}

.single-blog-author__name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #333333;
}

.single-blog-author__role {
  font-size: 0.82rem;
  color: #9a9a9a;
}

.single-blog-image {
  width: 100%;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
}

.single-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* TABLET */
@media (min-width: 768px) {
  .single-blog-hero {
    padding: 44px 0 52px;
  }

  .single-blog-image {
    height: 460px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .single-blog-hero {
    padding: 28px 0 38px;
  }

  .single-blog-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .single-blog-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .single-blog-author {
    padding-bottom: 22px;
    margin-bottom: 24px;
  }

  .single-blog-image {
    height: 260px;
    border-radius: 20px;
  }
}

/* CONTENEDOR */
.single-blog-back {
  max-width: 920px;
  padding-top: 26px;
  padding-bottom: 10px;
}

/* LINK */
.single-blog-back__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 0.92rem;
  color: #8a8a8a;

  text-decoration: none;
  transition: color 0.25s ease;
}

/* ICONO */
.single-blog-back__icon {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid #e5e5e5;

  background: #fff;
  color: #6f6f6f;

  transition: all 0.25s ease;
}

/* ICON SIZE */
.single-blog-back__icon i {
  font-size: 0.95rem;
}

/* TEXTO */
.single-blog-back__text {
  transition: color 0.25s ease;
}

/* 🔥 HOVER */
.single-blog-back__link:hover {
  color: var(--purple);
}

.single-blog-back__link:hover .single-blog-back__icon {
  border-color: rgba(124, 58, 237, 0.35); /* purple suave */
  background: #f6f0ff; /* ligero fill */
  color: var(--purple);

  transform: translateX(-2px); /* micro animación elegante */
}
.container-blog {
  max-width: 920px;
  margin: 20px auto;
  padding: 0 16px;
}


/* SINGLE BLOG CONTENT */
.single-blog-content-section {
  padding: 10px 0 70px;
  background: #ffffff;
}

.single-blog-content__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 1120px;
}

.single-blog-content {
  font-size: 1rem;
  line-height: 1.82;
  color: #686868;
}

.single-blog-content h2,
.single-blog-content h3 {
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  color: #2f2f2f;
  line-height: 1.25;
  margin: 30px 0 14px;
}

.single-blog-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.single-blog-content h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.single-blog-content p {
  margin-bottom: 18px;
}

.single-blog-content ul,
.single-blog-content ol {
  margin: 0 0 22px 20px;
  padding-left: 16px;
}

.single-blog-content li {
  margin-bottom: 8px;
}

.single-blog-content a {
  color: var(--purple);
  font-weight: 600;
}

.single-blog-content img {
  max-width: 100%;
  border-radius: 18px;
}

.single-blog-conclusion {
  margin-top: 34px;
  padding: 24px 26px;
  border-radius: 20px;
  border: 1px solid #eadcf4;
  background: #f7f1fb;
}

.single-blog-conclusion h3 {
  margin-top: 0;
  color: var(--purple);
}

/* SIDEBAR */
.single-blog-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.single-sidebar-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #eadcf4;
  background: #fbf7fd;
}

.single-sidebar-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.single-sidebar-author__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #f2e8fa;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-sidebar-author__icon svg {
  width: 20px;
  height: 20px;
}

.single-sidebar-author h3 {
  font-size: 1rem;
  color: #2f2f2f;
  margin-bottom: 2px;
}

.single-sidebar-author p {
  font-size: 0.82rem;
  color: #9a9a9a;
}

.single-sidebar-author__detail {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #777777;
}

.single-sidebar-cta {
  background: var(--purple);
  color: #fff;
}

.single-sidebar-cta h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.single-sidebar-cta p {
  color: rgba(255,255,255,.78);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.single-sidebar-cta a {
  min-height: 42px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* DESKTOP */
@media (min-width: 992px) {
  .single-blog-content__container {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 46px;
    align-items: start;
  }

  .single-blog-sidebar {
    position: sticky;
    top: 110px;
  }
}


/* SINGLE BLOG FAQS */
.single-blog-faqs {
  margin-top: 36px;
}

.single-blog-faqs h2 {
  margin-bottom: 18px;
}

.single-blog-faqs__list {
  display: grid;
  gap: 12px;
}

.single-blog-faq {
  border: 1px solid #eadcf4;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.single-blog-faq:hover {
  border-color: rgba(90, 35, 144, 0.24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.single-blog-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  color: #2f2f2f;
  position: relative;
  padding-right: 52px;
}

.single-blog-faq summary::-webkit-details-marker {
  display: none;
}

.single-blog-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f2e8fa;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.single-blog-faq[open] summary::after {
  content: "–";
  background: var(--purple);
  color: #ffffff;
}

.single-blog-faq__answer {
  padding: 0 20px 18px;
  color: #737373;
  font-size: 0.96rem;
  line-height: 1.75;
}

.single-blog-faq__answer p:last-child {
  margin-bottom: 0;
}

.service-detail-card {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.service-detail-card.is-hidden {
  display: none;
}


/* SINGLE SERVICE */
.single-service-page {
  background: #fff;
}

/* Back */
.single-service-back {
  padding: 26px 0 8px;
  background: #fff;
}

.single-service-back__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a8a8a;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.single-service-back__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #777;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.single-service-back__link:hover {
  color: var(--purple);
}

.single-service-back__link:hover .single-service-back__icon {
  background: #f3ebfa;
  color: var(--purple);
  transform: translateX(-2px);
}

/* Hero */
.single-service-hero {
  padding: 34px 0 56px;
  background: #fff;
}

.single-service-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.single-service-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.single-service-hero__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f2e8fa;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-service-hero__icon svg {
  width: 22px;
  height: 22px;
}

.single-service-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dff3ef;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.single-service-hero__title {
  margin-bottom: 12px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.12;
  color: #2f2f2f;
}

.single-service-hero__subtitle {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
}

.single-service-hero__text {
  max-width: 680px;
  margin-bottom: 28px;
  color: #707070;
  font-size: 1rem;
  line-height: 1.75;
}

.single-service-hero__text p {
  margin-bottom: 16px;
}

.single-service-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.single-service-hero__button svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.single-service-hero__button:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.single-service-hero__image {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #f6f6f6;
}

.single-service-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Shared heading */
.single-service-heading {
  text-align: center;
  margin-bottom: 42px;
}

.single-service-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #dff3ef;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.single-service-heading h2 {
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: #2f2f2f;
}

/* Benefits */
.single-service-benefits {
  padding: 70px 0 76px;
  background: #fafafa;
}

.single-service-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.single-service-benefit-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 24px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.single-service-benefit-card:hover {
  border-color: rgba(115, 208, 196, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.single-service-benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #dff3ef;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background-color 0.28s ease, color 0.28s ease;
}

.single-service-benefit-card__icon svg {
  width: 20px;
  height: 20px;
}

.single-service-benefit-card:hover .single-service-benefit-card__icon {
  background: var(--teal);
  color: #fff;
}

.single-service-benefit-card h3 {
  margin-bottom: 10px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #2f2f2f;
}

.single-service-benefit-card p {
  color: #777;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* FAQs */
.single-service-faqs {
  padding: 72px 0 86px;
  background: #fff;
}

.single-service-faqs__container {
  max-width: 860px;
}

.single-service-faqs__list {
  display: grid;
  gap: 12px;
}

.single-service-faq {
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.single-service-faq:hover {
  border-color: rgba(90, 35, 144, 0.26);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.035);
}

.single-service-faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 16px 54px 16px 20px;
  color: #333;
  font-size: 0.98rem;
  font-weight: 600;
}

.single-service-faq summary::-webkit-details-marker {
  display: none;
}

.single-service-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #f1f1f1;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.single-service-faq[open] {
  border-color: rgba(90, 35, 144, 0.28);
}

.single-service-faq[open] summary::after {
  content: "–";
  background: var(--purple);
  color: #fff;
}

.single-service-faq__answer {
  padding: 0 20px 18px;
  color: #707070;
  font-size: 0.94rem;
  line-height: 1.75;
}

.single-service-question-box {
  margin-top: 34px;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #eadcf4;
  background: #f7f1fb;
  text-align: center;
}

.single-service-question-box p {
  margin-bottom: 18px;
  color: #707070;
  font-size: 0.96rem;
  line-height: 1.7;
}

.single-service-question-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.single-service-question-box a:hover {
  background: #5fc0b3;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .single-service-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-service-hero__image {
    height: 390px;
  }
}

@media (min-width: 1100px) {
  .single-service-hero {
    padding: 42px 0 68px;
  }

  .single-service-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

  .single-service-hero__image {
    height: 380px;
  }

  .single-service-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .single-service-back {
    padding: 20px 0 4px;
  }

  .single-service-hero {
    padding: 26px 0 46px;
  }

  .single-service-hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .single-service-hero__image {
    height: 240px;
  }

  .single-service-hero__button {
    width: 100%;
    justify-content: center;
  }

  .single-service-benefits {
    padding: 56px 0 62px;
  }

  .single-service-faqs {
    padding: 58px 0 72px;
  }
}

.blog-card.is-hidden {
  display: none;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  color: rgba(255, 255, 255, 0.50);
  animation: heroBounceSlow 2.2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  color: currentColor;
}

@keyframes heroBounceSlow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(49, 18, 74, 0.88) 0%,
    rgba(49, 18, 74, 0.65) 30%,
    rgba(49, 18, 74, 0.25) 55%,
    rgba(49, 18, 74, 0) 100%
  );
}

.hero h1,
.hero p {
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.services-hero__overlay {
  background: radial-gradient(
    circle at center,
    rgba(74, 26, 107, 0.55) 0%,
    rgba(74, 26, 107, 0.35) 25%,  /* más rápido fade */
    rgba(74, 26, 107, 0.15) 50%,
    rgba(74, 26, 107, 0.05) 70%,
    rgba(74, 26, 107, 0) 100%
  );
}

.services-hero__title,
.services-hero__text {
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}


.service-detail-card {
  position: relative;
}

.service-detail-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.service-detail-card > *:not(.service-detail-card__overlay-link) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}


.service-card {
  position: relative;
}

.service-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.service-card > *:not(.service-card__overlay-link) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}


.shop-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.shop-filter {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* HOVER */
.shop-filter:hover {
  background: #6A1B9A; /* morado */
  color: #fff;
  border-color: #6A1B9A;
}

/* ACTIVO (CLAVE) */
.shop-filter.is-active {
  background: #6A1B9A; /* morado */
  color: #fff;
  border-color: #6A1B9A;
}


.about-gallery-fade {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #faf8fc 100%);
}

.about-gallery-fade__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 18px;
}

.about-gallery-fade__intro {
  max-width: 680px;
  margin: 0 auto 45px;
  text-align: center;
  color: #5a5d66;
  font-size: 17px;
  line-height: 1.7;
}

.about-gallery-fade__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 24px;
}

.about-gallery-fade__item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #f3f0f7;
  box-shadow: 0 20px 50px rgba(80, 75, 86, 0.1);
}

.about-gallery-fade__item--large {
  grid-row: span 2;
}

.about-gallery-fade__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 5s ease;
}

.about-gallery-fade__item img.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.about-gallery-fade__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(42, 40, 46, 0.04) 0%,
    rgba(42, 40, 46, 0.62) 100%
  );
}

.about-gallery-fade__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.about-gallery-fade__caption h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.about-gallery-fade__caption p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-gallery-fade {
    padding: 60px 0;
  }

  .about-gallery-fade__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-gallery-fade__item,
  .about-gallery-fade__item--large {
    height: 300px;
    grid-row: auto;
  }
}

.btn-header--outline {
  background: transparent;
  color: #6A1B9A; /* morado */
  border: 1px solid #6A1B9A;
}

.btn-header--outline:hover {
  background: #6A1B9A;
  color: #fff;
}


.hero-bg.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slider__image.is-active {
  opacity: 1;
  transform: scale(1.1);
}

/* SHOP CATEGORY INFO */
.shop-category-info {
  margin: 28px auto 34px;
  max-width: 1180px;
  padding: 0 16px;
}

.shop-category-info__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 340px;
  gap: 36px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.035);
}

.shop-category-info__content {
  min-width: 0;
}

.shop-category-info__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff45c;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.shop-category-info__eyebrow::before {
  content: "🥘";
  font-size: 0.9rem;
  line-height: 1;
}

.shop-category-info__title {
  margin-bottom: 14px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.18;
  color: #2f2f2f;
}

.shop-category-info__subtitle {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.68;
  color: #4b4b4b;
}

.shop-category-info__text {
  max-width: 780px;
  color: #555555;
  font-size: 0.96rem;
  line-height: 1.72;
}

.shop-category-info__text p {
  margin-bottom: 10px;
}

.shop-category-info__text p:last-child {
  margin-bottom: 0;
}

.shop-category-info__text strong {
  color: #1f1f1f;
  font-weight: 800;
}

.shop-category-info__media {
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  background: #f5f5f5;
}

.shop-category-info__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* TABLET */
@media (max-width: 991px) {
  .shop-category-info__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shop-category-info__media {
    height: 260px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .shop-category-info {
    margin: 22px auto 28px;
    padding: 0 18px;
  }

  .shop-category-info__inner {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .shop-category-info__eyebrow {
    font-size: 0.72rem;
  }

  .shop-category-info__title {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .shop-category-info__subtitle,
  .shop-category-info__text {
    font-size: 0.94rem;
  }

  .shop-category-info__media {
    height: 210px;
    border-radius: 18px;
  }
}

.shop-category-info__item {
  display: none;
}

.shop-category-info__item.is-active {
  display: block;
}


.shop-product-card.is-hidden {
  display: none;
}

.shop-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shop-product-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-product-card__link-icon svg {
  width: 18px;
  height: 18px;
}

/* GENERIC PAGE */
.generic-page-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 86px;
  background: linear-gradient(135deg, var(--purple) 0%, #4e1d72 100%);
}

.generic-page-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.13;
}

.generic-page-hero__shape--one {
  width: 380px;
  height: 380px;
  top: -110px;
  right: -80px;
  background: var(--teal);
}

.generic-page-hero__shape--two {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: 8%;
  background: #ffffff;
}

.generic-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.generic-page-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(115, 208, 196, 0.14);
  border: 1px solid rgba(115, 208, 196, 0.35);
  color: #8dd9cf;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.generic-page-hero__title {
  margin-bottom: 18px;
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.08;
  color: #ffffff;
}

.generic-page-hero__text {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.generic-page-content {
  padding: 70px 0 90px;
  background: #fafafa;
}

.generic-page-content__box {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  box-shadow: 0 16px 36px rgba(0,0,0,.045);
  color: #666;
  line-height: 1.8;
}

.generic-page-content__box h2,
.generic-page-content__box h3 {
  font-family: 'Caviar Dreams', 'DM Sans', sans-serif;
  color: #2f2f2f;
  margin: 28px 0 14px;
}

.generic-page-content__box p {
  margin-bottom: 18px;
}

.generic-page-content__box a {
  color: var(--purple);
  font-weight: 600;
}

@media (max-width: 767px) {
  .generic-page-hero {
    padding: 116px 0 66px;
  }

  .generic-page-content {
    padding: 48px 0 70px;
  }

  .generic-page-content__box {
    padding: 26px 22px;
    border-radius: 22px;
  }
}


/* PRIVACIDAD FORM */
.form-privacy {
  padding: 16px 18px;
  border: 1px solid #eadcf4;
  border-radius: 16px;
  background: #fbf7fd;
}

.form-privacy p {
  margin-bottom: 12px;
  color: #666;
  font-size: 0.86rem;
  line-height: 1.65;
}

.form-privacy a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #444;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-check input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--purple);
  flex-shrink: 0;
}

/* CAPTCHA PLACEHOLDER */
.form-captcha {
  display: flex;
  justify-content: flex-start;
}

.captcha-placeholder {
  width: 100%;
  max-width: 320px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.captcha-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 0.95rem;
  cursor: pointer;
}

.captcha-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--purple);
}

.captcha-box {
  width: 74px;
  height: 48px;
  border-radius: 6px;
  background: #f4f4f4;
  border: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.68rem;
  text-align: center;
}

@media (max-width: 767px) {
  .captcha-placeholder {
    max-width: 100%;
  }

  .form-privacy {
    padding: 14px 15px;
  }
}


.shop-product-card__tag-filter {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.shop-product-card__tag-filter:hover {
  background: var(--teal);
  color: #fff;
}


.shop-product-card__image-filter {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  display: block;
  cursor: pointer;
}