@charset "UTF-8";
@font-face {
  font-family: "TimesLocal";
  src: url("../fonts/times/times.woff2") format("woff2"), url("../fonts/times/times.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Reseteo básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  overflow-x: hidden;
  width: 100%;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #5e17eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong, b {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.05rem;
}

h6 {
  font-size: 0.95rem;
}

/* Listas */
ul, ol {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

li {
  margin: 0.35rem 0;
}

/* Citas y código */
blockquote {
  margin: 1.25rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid rgba(94, 23, 235, 0.5);
  background: rgba(94, 23, 235, 0.06);
}

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

pre {
  margin: 1rem 0;
  padding: 1rem;
  overflow: auto;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
}

/* Formularios (base) */
input, select, textarea, button {
  font: inherit;
}

::selection {
  background: rgba(94, 23, 235, 0.25);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

.top-bar {
  background: #0b2a4a;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0;
}
.top-bar a {
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
}
.top-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}
.top-bar .top-bar-socials {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
}
.top-bar .top-bar-socials .social-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.top-bar .top-bar-socials .social-top-link svg {
  display: block;
}
.top-bar .top-bar-socials .social-top-link:hover {
  opacity: 1;
  color: #bf95f9;
  transform: scale(1.15);
}
.top-bar .top-bar-socials .social-top-link.whatsapp-link:hover {
  color: #25D366;
}
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s ease;
}
.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .site-header .header-container {
    min-height: 70px;
    padding: 0 1.25rem;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: center;
}
.site-header .site-branding .custom-logo-link {
  display: inline-block;
  line-height: 0;
  transition: transform 0.3s ease;
}
.site-header .site-branding .custom-logo-link:hover {
  transform: scale(1.05);
}
.site-header .site-branding .custom-logo-link img {
  max-height: 65px;
  width: auto;
  display: block;
  transform: translateY(2px);
}
@media (max-width: 768px) {
  .site-header .site-branding .custom-logo-link img {
    max-height: 50px;
  }
}
.site-header .main-navigation {
  margin-left: auto;
  position: relative;
}
.site-header .main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
  align-items: center;
}
.site-header .main-navigation a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}
.site-header .main-navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #5e17eb;
  transition: width 0.3s ease;
}
.site-header .main-navigation a:hover {
  color: #5e17eb;
}
.site-header .main-navigation a:hover::after {
  width: 100%;
}
.site-header .main-navigation .menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #5e17eb;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.site-header .main-navigation .menu-toggle:hover {
  background: rgba(0, 0, 0, 0.02);
}
@media (max-width: 1024px) {
  .site-header .main-navigation .menu-toggle {
    display: inline-flex;
  }
  .site-header .main-navigation ul {
    display: none;
    position: absolute;
    top: calc(100% + 1.25rem);
    right: 0;
    width: min(92vw, 320px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 0.75rem;
    z-index: 3000;
    overflow: hidden;
  }
  .site-header .main-navigation.is-open ul {
    display: flex;
    animation: fadeInDown 0.3s ease;
  }
  .site-header .main-navigation a {
    padding: 1rem;
    border-radius: 10px;
  }
  .site-header .main-navigation a::after {
    display: none;
  }
  .site-header .main-navigation a:hover {
    background: #f1f5f9;
  }
}
.site-header .header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header .header-cart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s;
}
.site-header .header-cart a:hover {
  background: #f1f5f9;
}
.site-header .header-cart .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ec4899;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* =========================================================
   FRONT PAGE / HOME: Transparente y Sticky Inteligente
   ========================================================= */
body.home,
body.front-page {
  --topbar-height: 40px;
}
body.home .top-bar,
body.front-page .top-bar {
  position: relative;
  z-index: 2100;
  min-height: var(--topbar-height);
  background: rgba(18, 8, 34, 0.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.home #masthead.site-header,
body.front-page #masthead.site-header {
  position: absolute;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 2090;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.home #masthead.site-header .site-branding img,
body.front-page #masthead.site-header .site-branding img {
  max-height: 65px;
  transition: max-height 0.3s ease;
}
body.home #masthead.site-header .site-title a,
body.home #masthead.site-header .site-branding a,
body.home #masthead.site-header .main-navigation a,
body.home #masthead.site-header .menu-toggle,
body.home #masthead.site-header .header-cart a,
body.front-page #masthead.site-header .site-title a,
body.front-page #masthead.site-header .site-branding a,
body.front-page #masthead.site-header .main-navigation a,
body.front-page #masthead.site-header .menu-toggle,
body.front-page #masthead.site-header .header-cart a {
  color: #ffffff !important;
}
body.home #masthead.site-header .main-navigation a::after,
body.front-page #masthead.site-header .main-navigation a::after {
  background: #ffffff;
}
body.home #masthead.site-header .menu-toggle,
body.home #masthead.site-header .header-cart a,
body.front-page #masthead.site-header .menu-toggle,
body.front-page #masthead.site-header .header-cart a {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
body.home #masthead.site-header .menu-toggle:hover,
body.home #masthead.site-header .header-cart a:hover,
body.front-page #masthead.site-header .menu-toggle:hover,
body.front-page #masthead.site-header .header-cart a:hover {
  background: rgba(255, 255, 255, 0.15);
}
body.home #masthead.site-header.is-scrolled,
body.front-page #masthead.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(15, 10, 25, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
body.home #masthead.site-header.is-scrolled .header-container,
body.front-page #masthead.site-header.is-scrolled .header-container {
  min-height: 70px;
}
body.home #masthead.site-header.is-scrolled .site-branding img,
body.front-page #masthead.site-header.is-scrolled .site-branding img {
  max-height: 50px;
}
@media (max-width: 1024px) {
  body.home #masthead.site-header .main-navigation ul,
  body.front-page #masthead.site-header .main-navigation ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(15, 10, 25, 0.95);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
}
@media (max-width: 768px) {
  body.home #masthead.site-header,
  body.front-page #masthead.site-header {
    position: absolute;
    top: 0;
    background: transparent;
    border-bottom: none;
  }
}

body.admin-bar .top-bar {
  top: 32px;
}
body.admin-bar #masthead.site-header {
  top: calc(32px + var(--topbar-height));
}
body.admin-bar.home #masthead.site-header {
  top: 72px;
}
@media (max-width: 782px) {
  body.admin-bar .top-bar {
    top: 46px;
  }
  body.admin-bar #masthead.site-header {
    top: 46px;
  }
  body.admin-bar.home #masthead.site-header {
    top: 46px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  margin-top: 5rem;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.site-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: #bf95f9;
}
.site-footer .footer-container {
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.site-footer .footer-widgets {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer .widget-title {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin: 0.75rem 0;
}
.site-footer .footer-brand {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 3rem;
}
.site-footer .footer-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer .footer-brand-tagline {
  font-size: 0.9rem;
  color: #bf95f9;
  font-style: italic;
  margin: 0;
}
.site-footer .site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}
.site-footer .site-info .site-info-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.8;
}
.site-footer .site-info .sep {
  opacity: 0.3;
}

/**
 * Componente: Botones Globales
 */
.btn-witchez-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #5e17eb;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(94, 23, 235, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-witchez-primary:hover {
  background: #ec4899;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
  color: #ffffff;
}
.btn-witchez-primary:active {
  transform: translateY(-1px);
}

.btn-witchez-outline {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: #5e17eb;
  border: 2px solid #5e17eb;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-witchez-outline:hover {
  background: #5e17eb;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ===== PERSONALIZACIÓN WOOCOMMERCE ===== */
.woocommerce-product-details__short-description p,
.woocommerce-Tabs-panel--description p,
.woocommerce-variation-description p,
.woocommerce-product-details__short-description,
.woocommerce-variation-description {
  color: #5e17eb !important;
  font-weight: 600 !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* === CABECERA DE LA TIENDA === */
.archive.post-type-archive-product .woocommerce-products-header {
  padding: 6rem 0 3rem;
  text-align: center;
  background: #0b0617;
  margin-bottom: 4rem;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.archive.post-type-archive-product .woocommerce-products-header__title {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin: 0 0 1rem !important;
  background: linear-gradient(90deg, #bf95f9, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-transform: none !important;
}
.archive.post-type-archive-product .woocommerce-result-count {
  float: none !important;
  display: block;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.archive.post-type-archive-product .woocommerce-ordering {
  float: none !important;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: center;
}

.variations {
  width: 100%;
  margin-bottom: 2.5rem !important;
  border: none;
}
.variations tr {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.variations td.label {
  padding: 0;
}
.variations td.label label {
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.variations td.value {
  padding: 0;
  position: relative;
}
.variations select {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e2e8f0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background-color: #f8fafc;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}
.variations select:focus {
  outline: none;
  border-color: #5e17eb;
  box-shadow: 0 0 0 3px rgba(94, 23, 235, 0.1);
}
.variations .reset_variations {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: none;
}
.variations .reset_variations:hover {
  color: #ef4444;
}

.single_variation_wrap {
  padding: 1.5rem;
  background: #fdfaff;
  border-radius: 20px;
  border: 1px solid rgba(94, 23, 235, 0.05);
}
.single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 1.25rem;
}
.single_variation_wrap .woocommerce-variation-price .price {
  font-size: 1.25rem;
}
.single_variation_wrap .woocommerce-variation-price .price ins {
  color: #5e17eb;
  text-decoration: none;
  font-weight: 800;
}
.single_variation_wrap .woocommerce-variation-price .price del {
  font-size: 0.9rem;
  opacity: 0.5;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.woocommerce-variation-add-to-cart .quantity input {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  width: 60px;
  text-align: center;
}

.single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
  background-color: #ff6600 !important;
  border-radius: 14px !important;
  padding: 1rem 2rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
}
.single_add_to_cart_button:hover {
  background-color: #e65c00 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

span.onsale {
  min-width: auto !important;
  min-height: auto !important;
  width: auto !important;
  height: auto !important;
  padding: 6px 12px !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  border-radius: 4px !important;
  background: #ec4899 !important;
  color: #ffffff !important;
  top: 15px !important;
  right: 15px !important;
  left: auto !important;
  display: inline-block !important;
  line-height: 1 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 20;
  margin: 0 !important;
  transition: all 0.3s ease;
  border: none !important;
}

li.product:hover span.onsale {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(236, 72, 153, 0.3);
}

.single-product .site-content,
.archive.post-type-archive-product .site-content {
  padding-top: 6rem;
}

/* === GRID DE PRODUCTOS (TIENDA) === */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 2.5rem !important;
  margin: 3rem 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
ul.products::before, ul.products::after {
  display: none !important;
}
ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
ul.products li.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(94, 23, 235, 0.12);
  border-color: rgba(94, 23, 235, 0.1);
}
ul.products li.product .woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
  margin-bottom: 2rem !important;
  position: relative;
  z-index: 1;
}
ul.products li.product .woocommerce-loop-product__link img {
  border-radius: 18px !important;
  margin-bottom: 0 !important;
  transition: transform 0.5s ease;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
ul.products li.product:hover img {
  transform: scale(1.05);
}
ul.products li.product .woocommerce-loop-product__title {
  position: relative;
  z-index: 10 !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  margin-bottom: 0.75rem !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  background: #ffffff;
}
ul.products li.product .price {
  margin-bottom: 1.5rem !important;
  display: block !important;
  color: #5e17eb !important;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
}
ul.products li.product .price del {
  font-size: 0.85rem !important;
  opacity: 0.5;
  font-weight: 400;
  margin-right: 0.5rem;
  color: #64748b !important;
}
ul.products li.product .price ins {
  text-decoration: none !important;
  background: transparent !important;
}
ul.products li.product .button {
  margin-top: auto !important;
  background: #170a2b !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  padding: 0.85rem 1.5rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}
ul.products li.product .button:hover {
  background: #5e17eb !important;
  box-shadow: 0 8px 20px rgba(94, 23, 235, 0.3);
  transform: translateY(-2px);
}
ul.products li.product .button.loading {
  opacity: 0.7;
}

.woocommerce-result-count {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.woocommerce-ordering select {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #f8fafc;
}

/* =========================================================
   FLUENTBOOKING INTEGRATION (Mística & Premium)
   ========================================================= */
.fluent-booking-wrapper,
.fbs-calendar-wrapper {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  color: #ffffff !important;
  font-family: inherit !important;
}
.fluent-booking-wrapper .fbs-calendar-header-title,
.fluent-booking-wrapper .fbs-event-title,
.fbs-calendar-wrapper .fbs-calendar-header-title,
.fbs-calendar-wrapper .fbs-event-title {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fluent-booking-wrapper .fbs-date-picker-grid-item,
.fbs-calendar-wrapper .fbs-date-picker-grid-item {
  color: rgba(255, 255, 255, 0.7) !important;
}
.fluent-booking-wrapper .fbs-date-picker-grid-item.fbs-is-today,
.fbs-calendar-wrapper .fbs-date-picker-grid-item.fbs-is-today {
  color: #5e17eb !important;
  font-weight: 800;
}
.fluent-booking-wrapper .fbs-date-picker-grid-item.fbs-has-slots,
.fbs-calendar-wrapper .fbs-date-picker-grid-item.fbs-has-slots {
  background: rgba(94, 23, 235, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50%;
}
.fluent-booking-wrapper .fbs-date-picker-grid-item.fbs-has-slots:hover,
.fbs-calendar-wrapper .fbs-date-picker-grid-item.fbs-has-slots:hover {
  background: #5e17eb !important;
  color: #ffffff !important;
}
.fluent-booking-wrapper .fbs-slots-grid-item,
.fbs-calendar-wrapper .fbs-slots-grid-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}
.fluent-booking-wrapper .fbs-slots-grid-item:hover, .fluent-booking-wrapper .fbs-slots-grid-item.fbs-selected,
.fbs-calendar-wrapper .fbs-slots-grid-item:hover,
.fbs-calendar-wrapper .fbs-slots-grid-item.fbs-selected {
  background: #5e17eb !important;
  border-color: #5e17eb !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(94, 23, 235, 0.3);
}
.fluent-booking-wrapper .fbs-button-primary,
.fbs-calendar-wrapper .fbs-button-primary {
  background: #5e17eb !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 12px 25px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 10px 20px rgba(94, 23, 235, 0.4) !important;
}
.fluent-booking-wrapper .fbs-button-primary:hover,
.fbs-calendar-wrapper .fbs-button-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.product-type-booking,
.single-product .fluent-booking-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Ocultar elementos innecesarios si el usuario quiere un look más limpio */
.fbs-powered-by {
  display: none !important;
}

/* ===== HERO LANDING (Front Page) ===== */
.hero-landing {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(8.5rem, 11vw, 11rem) 0 4.5rem;
  background: linear-gradient(135deg, #170a2b 0%, #0b0617 100%);
}
.hero-landing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-landing__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
.hero-landing__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 2rem 0;
}
@media (max-width: 960px) {
  .hero-landing__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 2.5rem;
  }
  .hero-landing__inner .hero-landing__portrait {
    order: 2;
  }
  .hero-landing__inner .hero-landing__carousel {
    order: 1;
  }
}
.hero-landing__inner--carousel {
  grid-template-columns: 0.8fr 1.2fr;
}
@media (max-width: 960px) {
  .hero-landing__inner--carousel {
    grid-template-columns: 1fr;
  }
}
.hero-landing__content--top {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}
.hero-landing__content--top .hero-landing__title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-landing__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(11, 6, 23, 0.3) 0%, rgba(11, 6, 23, 0.6) 100%);
}
.hero-landing__portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  .hero-landing__portrait {
    max-width: 180px;
  }
}
.hero-landing__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-landing__portrait-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}
.hero-landing__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.hero-landing__title span {
  display: block;
  font-size: 0.4em;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.hero-landing__carousel {
  width: 100%;
  max-width: 600px;
  margin: 0;
  position: relative;
  z-index: 5;
}
@media (max-width: 960px) {
  .hero-landing__carousel {
    margin: 0 auto;
    max-width: 100%;
  }
}
.hero-landing .embla {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  .hero-landing .embla {
    padding: 15px;
    border-radius: 16px;
  }
}
.hero-landing .embla__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}
.hero-landing .embla__container {
  display: flex;
  touch-action: pan-y;
  backface-visibility: hidden;
}
.hero-landing .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  aspect-ratio: 1/1.35;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-landing .embla__slide__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-landing .embla__slide__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.hero-landing .embla__prev, .hero-landing .embla__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}
.hero-landing .embla__prev:hover, .hero-landing .embla__next:hover {
  background: #5e17eb;
  border-color: #5e17eb;
}
.hero-landing .embla__prev {
  left: 10px;
}
.hero-landing .embla__next {
  right: 10px;
}
.hero-landing .embla__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}
.hero-landing .embla__dots .embla__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.hero-landing .embla__dots .embla__dot.is-active {
  background: #5e17eb;
  transform: scale(1.4);
}
.hero-landing__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.home-video {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #e2cbf6;
}
.home-video__inner {
  display: grid;
  gap: 1.25rem;
}
.home-video__head {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
}
.home-video__title {
  color: #5e17eb;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 0.5rem;
}
.home-video__subtitle {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.6;
}
.home-video__frame {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: 16/9;
  position: relative;
}
.home-video__embed {
  position: absolute;
  inset: 0;
}
.home-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.home-video__embed .wp-video, .home-video__embed .mejs-container, .home-video__embed .mejs-inner, .home-video__embed .mejs-mediaelement, .home-video__embed video, .home-video__embed .wp-video-shortcode {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
}
.home-video__embed .mejs-overlay, .home-video__embed .mejs-poster {
  width: 100% !important;
  height: 100% !important;
}

.owner-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #E2CBF6;
}
.owner-section__inner {
  display: grid;
  justify-items: center;
}
.owner-section__card {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: #E2CBF6;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.owner-section__photo {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.owner-section__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.owner-section__img--placeholder {
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, 0.25);
}
.owner-section__content {
  color: rgba(0, 0, 0, 0.88);
}
.owner-section__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6E5020;
}
.owner-section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  color: #5e17eb;
}
.owner-section__text {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #1E1E1E;
  max-width: 70ch;
}
.owner-section__text em, .owner-section__text i {
  font-style: italic;
  color: #5e17eb;
  font-weight: 600;
}
.owner-section__text strong, .owner-section__text b {
  font-weight: 800;
  color: rgba(0, 0, 0, 0.92);
}
.owner-section__text .hl {
  color: #5e17eb;
  font-weight: 800;
}
.owner-section__text .hl-pink {
  color: #5e17eb;
  font-weight: 800;
  font-size: 1.4rem;
  font-style: italic;
}
.owner-section__text .mark {
  padding: 0 0.25rem;
  border-radius: 8px;
  background: rgba(94, 23, 235, 0.12);
  color: #5e17eb;
  font-weight: 800;
}
.owner-section__text a {
  color: #5e17eb;
  font-weight: 700;
  text-decoration: underline;
}
.owner-section__text a:hover {
  opacity: 0.9;
}
.owner-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ec4899;
  text-decoration: none;
  font-weight: 800;
}
.owner-section__link:hover {
  opacity: 0.9;
  text-decoration: underline;
}
@media (max-width: 960px) {
  .owner-section__card {
    grid-template-columns: 1fr;
  }
}

.services-section {
  position: relative;
  padding: clamp(10rem, 15vw, 12rem) 0 4rem;
  color: #5e17eb;
  background: #170a2b;
}
.services-section__inner {
  position: relative;
  z-index: 2;
}
.services-section__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}
.services-section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.services-section__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.1rem;
}
.services-section__empty {
  text-align: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}
.services-section {
  /* ===== Olas ===== */
}
.services-section__wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
  overflow: hidden;
}
.services-section__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.services-section__wave path {
  fill: #0b0617;
}
.services-section__wave--top {
  top: -1px;
  transform: rotate(180deg);
}
.services-section__wave--bottom {
  bottom: -1px;
}

/* Grid de servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Card */
.services-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(94, 23, 235, 0.08);
  box-shadow: 0 15px 45px rgba(94, 23, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(94, 23, 235, 0.18);
  border-color: rgba(94, 23, 235, 0.2);
}
.services-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.services-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.services-card:hover .services-card__img {
  transform: scale(1.08);
}
.services-card__body {
  padding: 1.5rem;
}
.services-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 800;
}
.services-card__title a {
  color: #000;
  text-decoration: none;
}
.services-card__title a:hover {
  color: #5e17eb;
}
.services-card__text {
  margin: 0 0 1.25rem;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}
.services-card__actions {
  display: flex;
  gap: 0.6rem;
}
.services-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  background: #5e17eb;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.services-card__btn:hover {
  background: #ec4899;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.services-section__more {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.services-section__more-btn {
  background: #ec4899;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
}
.services-section__more-btn:hover {
  background: rgb(237.9, 90.3, 163.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.4);
}

.products-carousel {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: #E2CBF6;
  color: #5e17eb;
}
.products-carousel__head {
  text-align: center;
  max-width: 75ch;
  margin: 0 auto 1.75rem;
}
.products-carousel__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
}
.products-carousel__subtitle {
  margin: 0;
  color: rgba(181, 31, 31, 0.78);
  line-height: 1.6;
}
.products-carousel__more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Embla base */
.embla {
  position: relative;
  margin-top: 1.25rem;
}
.embla__viewport {
  overflow: hidden;
  border-radius: 18px;
}
.embla__container {
  display: flex;
  gap: 1rem;
  padding: 0.35rem;
  justify-content: center;
}
.embla__slide {
  flex: 0 0 28%;
  min-width: 0;
}
@media (max-width: 1024px) {
  .embla__slide {
    flex-basis: 42%;
  }
}
@media (max-width: 640px) {
  .embla__slide {
    flex-basis: 85%;
  }
}
.embla__controls {
  position: absolute;
  top: -3.2rem;
  right: 0;
  display: flex;
  gap: 0.6rem;
}
.embla__prev, .embla__next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.embla__prev:hover, .embla__next:hover {
  background: rgba(255, 255, 255, 0.1);
}
.embla__prev:disabled, .embla__next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Card del producto */
.product-slide {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.product-slide__media {
  display: block;
  background: rgba(0, 0, 0, 0.2);
}
.product-slide__img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.product-slide__body {
  padding: 1rem 1rem 1.15rem;
}
.product-slide__title {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  line-height: 1.2;
}
.product-slide__title a {
  color: #1E1E1E;
  text-decoration: none;
}
.product-slide__title a:hover {
  opacity: 0.9;
}
.product-slide__price {
  color: #6C6C6C;
  margin: 0 0 0.85rem;
  font-weight: 700;
}
.product-slide__price del {
  opacity: 0.7;
  margin-right: 0.35rem;
}
.product-slide__price ins {
  text-decoration: none;
}
.product-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: rgba(168, 85, 247, 0.95);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.22);
}
.product-slide__btn:hover {
  opacity: 0.95;
}

.contact-page {
  background: #0b0617;
}

.contact-header {
  padding: clamp(8rem, 12vw, 12rem) 0 6rem;
  text-align: center;
  color: #ffffff;
}
.contact-header__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #bf95f9, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-header__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-wrapper {
  background: #ffffff;
  padding: 6rem 0 10rem;
  border-radius: 60px 60px 0 0;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .contact-wrapper {
    border-radius: 30px 30px 0 0;
    padding: 4rem 0 6rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Info Column */
.contact-info__card {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(94, 23, 235, 0.1);
}
.contact-info__title {
  font-size: 2rem;
  font-weight: 800;
  color: #0b0617;
  margin-bottom: 1rem;
}
.contact-info__text {
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-list__icon {
  width: 45px;
  height: 45px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-list__content strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #5e17eb;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.contact-list__content a, .contact-list__content span {
  font-size: 1.1rem;
  color: #0b0617;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list__content a:hover {
  color: #ec4899;
}

.contact-social {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2rem;
}
.contact-social strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1.25rem;
}
.contact-social__links {
  display: flex;
  gap: 1rem;
}
.contact-social .social-link {
  width: 40px;
  height: 40px;
  background: #0b0617;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  transition: all 0.3s ease;
}
.contact-social .social-link:hover {
  background: #ec4899;
  transform: translateY(-3px);
}

/* Form Column */
.contact-form-card {
  background: #ffffff;
  padding: 1rem;
}

.contact-mockup .form-group {
  margin-bottom: 1.5rem;
}
.contact-mockup .form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #0b0617;
}
.contact-mockup .form-group input, .contact-mockup .form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-mockup .form-group input:focus, .contact-mockup .form-group textarea:focus {
  outline: none;
  border-color: #5e17eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(94, 23, 235, 0.1);
}
.contact-mockup .form-group textarea {
  height: 150px;
  resize: none;
}
.contact-mockup .contact-btn {
  width: 100%;
  padding: 1.1rem;
  background: #5e17eb;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(94, 23, 235, 0.2);
}
.contact-mockup .contact-btn:hover {
  background: #ec4899;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
}

.standard-page {
  background: #0b0617;
}

.page-header {
  position: relative;
  padding: clamp(8rem, 12vw, 12rem) 0 6rem;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 6, 23, 0.4), #0b0617);
}
.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.page-header__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}
.page-header__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(90deg, #bf95f9, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-header__subtitle {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.page-content-wrapper {
  background: #ffffff;
  padding: 5rem 0 8rem;
  border-radius: 40px 40px 0 0;
  margin-top: -3rem;
  position: relative;
  z-index: 20;
  min-height: 50vh;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .page-content-wrapper {
    padding: 3rem 0 5rem;
    border-radius: 30px 30px 0 0;
  }
}

.page-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1e293b;
}
.page-body h2 {
  font-size: 2.2rem;
  margin: 3rem 0 1.5rem;
  font-weight: 800;
  color: #0b0617;
}
.page-body h3 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.25rem;
  font-weight: 800;
  color: #0b0617;
}
.page-body p {
  margin-bottom: 1.8rem;
  color: #334155;
}
.page-body ul, .page-body ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.page-body li {
  margin-bottom: 0.75rem;
}
.page-body img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
}
.page-body blockquote {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8fafc;
  border-left: 5px solid #5e17eb;
  border-radius: 0 20px 20px 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #5e17eb;
}

/* --- LISTADO DEL BLOG (INDEX) --- */
.blog-header {
  padding: clamp(10rem, 15vw, 15rem) 0 10rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b0617;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.blog-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 6, 23, 0.6) 0%, rgba(11, 6, 23, 0.9) 100%);
  z-index: 1;
}
.blog-header__content {
  position: relative;
  z-index: 2;
}
.blog-header__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(94, 23, 235, 0.5), 0 10px 40px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.blog-header__subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.blog-index-bg {
  background: #f8fafc;
  padding: 4rem 0 6rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.post-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(94, 23, 235, 0.15);
  border-color: rgba(94, 23, 235, 0.1);
}
.post-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e2e8f0;
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.post-card:hover .post-card__media img {
  transform: scale(1.1);
}
.post-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #170a2b 0%, #5e17eb 100%);
  opacity: 0.9;
}
.post-card__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}
.post-card__cat a {
  color: #5e17eb;
  text-decoration: none;
  position: relative;
}
.post-card__cat a:hover {
  color: #ec4899;
}
.post-card__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 800;
}
.post-card__title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-card__title a:hover {
  color: #5e17eb;
}
.post-card__excerpt {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.post-card__link {
  margin-top: auto;
  font-weight: 800;
  color: #5e17eb;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.post-card__link:hover {
  color: #ec4899;
}

/* --- POST INDIVIDUAL (SINGLE) --- */
.single-post {
  background: #0b0617;
  padding-bottom: 0;
}
.single-post__header {
  position: relative;
  padding: clamp(8rem, 15vw, 15rem) 0 8rem;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.single-post__header-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.single-post__header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(94, 23, 235, 0.2) 0%, #0b0617 80%);
}
.single-post__header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}
.single-post__header-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.single-post__meta {
  color: #bf95f9;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 0 0 20px rgba(191, 149, 249, 0.4);
  font-size: 0.85rem;
}
.single-post__meta a {
  color: inherit;
  text-decoration: none;
}
.single-post__meta a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.single-post__title {
  font-size: clamp(1.75rem, 8vw, 3.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}
.single-post__author-top {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 22px;
  border-radius: 50px;
  backdrop-filter: blur(15px);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.single-post__author-top img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #5e17eb;
}
.single-post__layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  margin-top: -6rem;
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .single-post__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: -3rem;
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .single-post__layout {
    padding: 0 1rem;
    margin-top: -2rem;
  }
}
.single-post__body {
  background: #ffffff;
  padding: 5rem;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15);
  color: #1e293b;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .single-post__body {
    padding: 4rem;
  }
}
@media (max-width: 768px) {
  .single-post__body {
    padding: 2.5rem 1.25rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
}
.single-post__body .entry-content img, .single-post__body .entry-content video, .single-post__body .entry-content iframe, .single-post__body .entry-content table {
  max-width: 100% !important;
  height: auto !important;
}
.single-post__body .entry-content .wp-block-embed {
  margin: 3rem 0;
  width: 100%;
}
.single-post__body .entry-content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.single-post__body .entry-content .wp-block-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}
.single-post__body .entry-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.single-post__body .entry-content p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #334155;
}
.single-post__body .entry-content h2 {
  margin-top: 3.5rem;
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}
.single-post__body .entry-content h3 {
  margin-top: 2.5rem;
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 800;
}

.pagination-wrapper {
  margin-top: 4rem;
}
.pagination-wrapper .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  transition: all 0.3s ease;
}
.pagination-wrapper .page-numbers:hover {
  border-color: #5e17eb;
  color: #5e17eb;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(94, 23, 235, 0.1);
}
.pagination-wrapper .page-numbers.current {
  background: #5e17eb;
  color: #ffffff;
  border-color: #5e17eb;
  box-shadow: 0 5px 20px rgba(94, 23, 235, 0.3);
}

.post-share {
  position: sticky;
  top: 120px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .post-share {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    left: 0;
  }
  .post-share__title {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
}
.post-share__title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #bf95f9;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.post-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  margin: 0 auto 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 1024px) {
  .post-share__link {
    margin: 0;
  }
}
.post-share__link:hover {
  transform: scale(1.15);
  background: #5e17eb;
  border-color: #5e17eb;
  box-shadow: 0 0 20px rgba(94, 23, 235, 0.4);
}

.post-toc {
  margin-top: 3rem;
  text-align: center;
}
.post-toc__title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #bf95f9;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.author-box {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 30px;
  margin: 4rem 0;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
@media (max-width: 640px) {
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
}
.author-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.author-box__image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.author-box__content {
  flex: 1;
}
.author-box__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #5e17eb;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.author-box__name {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 0.75rem;
  color: #1e293b;
  text-transform: capitalize;
}
.author-box__bio {
  margin: 0;
  font-size: 1rem !important;
  color: #64748b !important;
  line-height: 1.6 !important;
}

.newsletter-box {
  background: linear-gradient(135deg, #5e17eb 0%, #170a2b 100%);
  color: #ffffff;
  padding: 4rem 2.5rem;
  border-radius: 32px;
  text-align: center;
  margin: 5rem 0;
  box-shadow: 0 30px 70px rgba(94, 23, 235, 0.3);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsletter-box {
    padding: 3rem 1.25rem;
    margin: 3rem 0;
    border-radius: 24px;
  }
}
.newsletter-box__title {
  color: #ffffff;
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.newsletter-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.5;
}
.newsletter-box__form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 2.5rem auto 0;
}
@media (max-width: 600px) {
  .newsletter-box__form {
    flex-direction: column;
    gap: 1rem;
  }
}
.newsletter-box__form input {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.newsletter-box__form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-box__form input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}
.newsletter-box__form button {
  background: #ec4899;
  color: #ffffff;
  padding: 1.1rem 2.2rem;
  border-radius: 18px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.newsletter-box__form button:hover {
  background: #ffffff;
  color: #ec4899;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.newsletter-box__form button:active {
  transform: translateY(-1px);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0 0;
  border-top: 1px solid #e2e8f0;
  margin-top: 4rem;
}
@media (max-width: 640px) {
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.post-navigation a {
  font-weight: 800;
  color: #5e17eb;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.post-navigation a:hover {
  color: #ec4899;
}

.post-related-products {
  background: #0b0617;
  padding: 6rem 0;
}
.post-related-products__title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 4rem;
  color: #ffffff;
  font-weight: 900;
  padding: 0 1.5rem;
}
.post-related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
@media (max-width: 480px) {
  .post-related-products__grid {
    grid-template-columns: 1fr;
  }
}
.post-related-products .no-related {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  grid-column: 1/-1;
  font-style: italic;
}

.post-related-content {
  background: #0b0617;
  padding: 0 0 8rem;
}
.post-related-content__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #ffffff;
  font-weight: 900;
}

.product-card-mini {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.product-card-mini:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.product-card-mini__image {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.product-card-mini__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-mini__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #1e293b;
}
.product-card-mini__price {
  font-weight: 900;
  color: #5e17eb;
  font-size: 1.05rem;
  display: block;
}
.product-card-mini__price ins {
  text-decoration: none;
}
.product-card-mini__price del {
  font-size: 0.85rem;
  opacity: 0.5;
  font-weight: 400;
  margin-right: 0.5rem;
}

.latest-blog-section {
  padding: clamp(6rem, 10vw, 8rem) 0;
  background: #fdfbff;
  position: relative;
}
.latest-blog-section__head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.latest-blog-section__title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5e17eb, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.latest-blog-section__subtitle {
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1.6;
}
.latest-blog-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}

.latest-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}
.latest-blog-grid .post-card {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.latest-blog-grid .post-card:hover {
  box-shadow: 0 20px 50px rgba(94, 23, 235, 0.12);
}

/* Botón flotante de WhatsApp estilo cápsula */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #064e3b;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(6, 78, 59, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.whatsapp-float-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  flex-shrink: 0;
}
.whatsapp-float-btn span {
  color: #ffffff;
  letter-spacing: 0.2px;
}
.whatsapp-float-btn:hover {
  background-color: #04392b;
  color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.6);
}
.whatsapp-float-btn:active {
  transform: translateY(-1px) scale(0.98);
}
@media (max-width: 480px) {
  .whatsapp-float-btn {
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 14px;
  }
  .whatsapp-float-btn svg {
    width: 19px;
    height: 19px;
  }
}

/*# sourceMappingURL=main.css.map */

