/*
Theme Name: Hacer Cosas
Author: Gustavo
Version: 1.0
Text Domain: hacer-cosas
*/

:root{
  --pink:#F4A7B9;
  --blue:#92C1E9;
  --white:#FFFFFF;
  --gray:#8E8E8E;
  --black:#1A1A1A;
  --gold:#D4AF37;
  --bg:#F7FAFD;
  --line:#E8E8E8;
  --shadow:0 14px 36px rgba(26,26,26,.08);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:Helvetica, Arial, sans-serif;
  color:var(--black);
  background:var(--white);
}

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

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

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

.topbar{
  padding:12px 16px;
  text-align:center;
  font-size:14px;
  font-weight:600;
  text-transform:lowercase;
  color:#1a1a1a;
  background:linear-gradient(
    90deg,
    #92C1E9,
    #F4A7B9,
    #FFF2CC,
    #B7C9A8,
    #F4A7B9,
    #92C1E9
  );
  background-size:600% 100%;
  animation:topbarShift 10s linear infinite;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(26,26,26,.08);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
}

.brand{
  display:inline-flex;
  flex-direction:column;
  line-height:.88;
  font-size:42px;
  font-weight:900;
  letter-spacing:-.05em;
  text-transform:lowercase;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:15px;
  text-transform:lowercase;
}

.site-nav a:hover{
  opacity:.7;
}

.menu-toggle{
  display:none;
  border:1px solid rgba(26,26,26,.12);
  background:var(--white);
  border-radius:999px;
  padding:10px 14px;
  font:inherit;
  text-transform:lowercase;
  cursor:pointer;
}

.hero,
.section{
  padding:28px 0;
}

.hero-grid,
.two-col,
.footer-grid,
.blog-grid,
.product-grid,
.card-grid,
.bullet-grid,
.featured-products{
  display:grid;
  gap:18px;
}

.hero-grid,
.two-col{
  grid-template-columns:1.05fr .95fr;
}

.footer-grid{
  grid-template-columns:1.5fr .75fr .75fr;
}

.blog-grid{
  grid-template-columns:repeat(3,1fr);
}

.product-grid{
  grid-template-columns:repeat(3,1fr);
}

.card-grid,
.bullet-grid{
  grid-template-columns:repeat(4,1fr);
}

.featured-products{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:32px;
  align-items:start;
}

.card{
  background:var(--white);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}

.hero-copy,
.hero-image,
.dark-card,
.light-card,
.info-strip,
.blog-body,
.simple-card,
.centered-card,
.entry-card{
  padding:30px;
}

.hero-image img,
.blog-card img{
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
  object-fit:cover;
}

.hero-image img{
  height:100%;
  min-height:480px;
  border-radius:var(--radius-xl);
}

.eyebrow{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:rgba(26,26,26,.48);
}

h1,h2,h3,p{
  margin-top:0;
}

h1,h2{
  font-size:clamp(34px,5vw,66px);
  line-height:.96;
  letter-spacing:-.05em;
  text-transform:lowercase;
}

h1 span{
  color:var(--pink);
}

h2{
  font-size:clamp(28px,4vw,48px);
}

h3{
  font-size:22px;
  line-height:1.1;
  text-transform:lowercase;
}

p{
  font-size:16px;
  line-height:1.7;
  color:rgba(26,26,26,.74);
  text-transform:lowercase;
}

.lead{
  font-size:18px;
  color:rgba(26,26,26,.82);
}

.narrow-text{
  max-width:760px;
}

.dark-card{
  background:var(--black);
  color:var(--white);
}

.dark-card p,
.dark-card .eyebrow{
  color:rgba(255,255,255,.78);
}

.dark-card h2{
  color:var(--white);
}

.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.center-buttons{
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  text-transform:lowercase;
  border:1px solid transparent;
}

.btn-dark{
  background:var(--black);
  color:var(--white);
}

.btn-light{
  background:var(--white);
  border-color:rgba(26,26,26,.12);
}

.full-btn{
  width:100%;
  text-align:center;
  display:inline-flex;
  justify-content:center;
  margin-top:0;
}

.info-strip,
.centered-card,
.narrow-block{
  text-align:center;
}

.product-card,
.blog-card{
  overflow:hidden;
  background:var(--white);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}

.product-card{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.blog-card img{
  height:320px;
}

.product-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  background:#f7f7f7;
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
}

.product-info{
  padding:24px;
  width:100%;
}

.product-body{
  padding:20px;
}

.product-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:12px;
}

.product-top h3{
  margin:0;
  font-size:28px;
  line-height:1.05;
  flex:1;
}

.product-top span,
.price{
  white-space:nowrap;
  font-size:28px;
  font-weight:700;
  color:var(--black);
}

.product-desc{
  margin:0 0 24px;
  font-size:16px;
  line-height:1.5;
  color:#444;
  text-transform:lowercase;
}

.product-top p,
.blog-body p:last-of-type,
.simple-card p{
  font-size:14px;
}

.blog-body a{
  font-size:14px;
  text-decoration:underline;
  text-underline-offset:4px;
  text-transform:lowercase;
}

.site-footer{
  margin-top:24px;
  padding:30px 0 42px;
  border-top:1px solid rgba(26,26,26,.08);
}

.footer-brand{
  font-size:42px;
  line-height:.88;
  font-weight:900;
  letter-spacing:-.05em;
  text-transform:lowercase;
  margin-bottom:14px;
}

.site-footer h3{
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(26,26,26,.48);
}

.site-footer a{
  display:block;
  margin-bottom:10px;
  font-size:15px;
  text-transform:lowercase;
}

.entry-card{
  background:#fff;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}

.entry-title,
.archive-title,
.page-title,
.single-title{
  margin-bottom:16px;
}

.post-meta,
.single-meta{
  font-size:13px;
  color:rgba(26,26,26,.5);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:16px;
}

.featured-thumb{
  margin:24px 0;
  overflow:hidden;
  border-radius:var(--radius-xl);
}

.featured-thumb img{
  width:100%;
  height:auto;
}

.pagination{
  margin-top:28px;
}

.pagination .nav-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(26,26,26,.12);
}

.pagination .current{
  background:var(--black);
  color:#fff;
}

/* WOOCOMMERCE GENERAL */
.woocommerce div.product{
  margin-top:30px;
}

.woocommerce div.product .product_title{
  font-size:clamp(32px,4vw,52px);
  line-height:.98;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price{
  color:var(--black);
  font-size:28px;
  font-weight:800;
}

.woocommerce .quantity .qty{
  padding:10px;
  border-radius:10px;
  border:1px solid rgba(26,26,26,.12);
}

.woocommerce button.button.alt{
  background:var(--black);
  border-radius:999px;
  padding:14px 22px;
}

.woocommerce-info,
.woocommerce-message{
  border-top-color:var(--blue);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message{
  border-radius:18px;
}

.woocommerce table.shop_table{
  border-radius:18px;
  overflow:hidden;
}

/* SHOP */
.woocommerce-page .site-main,
.woocommerce .site-main{
  max-width:1320px !important;
  margin:0 auto !important;
  padding:0 64px 80px !important;
}

.woocommerce .woocommerce-breadcrumb{
  margin:0 0 14px;
  font-size:14px;
  color:rgba(26,26,26,.5);
}

.woocommerce .woocommerce-result-count{
  margin:0 0 20px;
  font-size:16px;
  color:rgba(26,26,26,.65);
}

.woocommerce .woocommerce-ordering{
  margin:0 0 24px;
}

.woocommerce ul.products,
.woocommerce-page ul.products{
  display:grid !important;
  grid-template-columns:repeat(auto-fit, minmax(280px, 320px)) !important;
  gap:32px !important;
  justify-content:start !important;
  padding:32px 0 0 !important;
  margin:0 !important;
  width:100% !important;
  list-style:none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after{
  display:none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  width:100% !important;
  max-width:320px !important;
  margin:0 !important;
  float:none !important;
  clear:none !important;
  background:#fff !important;
  border-radius:var(--radius-xl) !important;
  overflow:hidden !important;
  box-shadow:var(--shadow) !important;
  padding:0 0 18px !important;
  display:flex !important;
  flex-direction:column !important;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img{
  width:100% !important;
  height:360px !important;
  object-fit:cover !important;
  display:block !important;
  margin:0 !important;
  border-radius:var(--radius-xl) var(--radius-xl) 0 0 !important;
  background:#f7f7f7 !important;
}

.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale{
  min-height:auto !important;
  min-width:auto !important;
  line-height:1 !important;
  padding:10px 12px !important;
  border-radius:999px !important;
  font-size:13px !important;
  font-weight:700 !important;
  right:12px !important;
  top:12px !important;
  left:auto !important;
  margin:0 !important;
  background:#b5a300 !important;
  color:#fff !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title{
  font-size:18px !important;
  line-height:1.2 !important;
  font-weight:700 !important;
  padding:18px 18px 6px !important;
  margin:0 !important;
  color:var(--black) !important;
  text-transform:lowercase !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price{
  padding:0 18px !important;
  margin:0 0 14px !important;
  font-size:20px !important;
  font-weight:700 !important;
  color:var(--black) !important;
  white-space:normal !important;
  line-height:1.3 !important;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del{
  opacity:.5;
  margin-right:6px;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins{
  text-decoration:none;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button{
  margin:18px !important;
  margin-top:auto !important;
  width:calc(100% - 36px) !important;
  border-radius:999px !important;
  background:var(--black) !important;
  color:#fff !important;
  text-align:center !important;
  padding:14px 0 !important;
  font-weight:700 !important;
  display:inline-flex !important;
  justify-content:center !important;
  align-items:center !important;
}

.woocommerce ul.products li.product .added_to_cart,
.woocommerce-page ul.products li.product .added_to_cart{
  padding:0 18px 8px !important;
  font-size:14px !important;
}

/* CUTE BANNER */
.hc-cute-banner{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:40px auto;
  padding:22px 28px;
  max-width:900px;
  background:linear-gradient(135deg, #eef7ff 0%, #f8f1ff 35%, #fff7fb 70%, #eef7ff 100%);
  border:3px solid rgba(255,255,255,0.9);
  border-radius:999px;
  box-shadow:
    0 0 0 2px #cfe8ff,
    0 0 18px rgba(255, 214, 235, 0.8),
    0 0 35px rgba(208, 232, 255, 0.5);
  position:relative;
  overflow:hidden;
}

.hc-cute-banner::before{
  content:"✿";
  position:absolute;
  left:18px;
  top:10px;
  font-size:26px;
  color:#f3a8c6;
}

.hc-cute-banner::after{
  content:"♡";
  position:absolute;
  right:22px;
  bottom:10px;
  font-size:24px;
  color:#f3a8c6;
}

.hc-cute-banner span{
  font-family:Helvetica, Arial, sans-serif;
  font-size:clamp(24px, 3vw, 42px);
  font-weight:700;
  color:#1a1a1a;
  text-align:center;
  line-height:1.1;
  letter-spacing:-0.02em;
  text-shadow:
    0 1px 0 #fff,
    0 0 8px rgba(255,255,255,0.9);
  animation:hcPulse 2.8s ease-in-out infinite;
}

@keyframes hcPulse{
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.03);}
}

@keyframes topbarShift{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* SHOP TEMPLATE HACER COSAS */
.hc-shop-page .simple-hero .container{
  max-width:980px;
}

.hc-shop-products .hc-shop-products-inner{
  max-width:1320px;
  margin:0 auto;
  padding-left:32px;
  padding-right:32px;
}

.hc-shop-products .section-head{
  margin-bottom:18px;
}

.hc-woo-grid-wrap{
  width:100%;
  padding-top:8px;
}

.hc-shop-products .woocommerce{
  width:100%;
}

.hc-shop-products .woocommerce ul.products,
.hc-shop-products .woocommerce-page ul.products{
  display:grid !important;
  grid-template-columns:repeat(auto-fit, minmax(280px, 320px)) !important;
  gap:32px !important;
  justify-content:start !important;
  width:100% !important;
  margin:0 !important;
  padding:12px 0 0 !important;
  list-style:none !important;
}

.hc-shop-products .woocommerce ul.products::before,
.hc-shop-products .woocommerce ul.products::after,
.hc-shop-products .woocommerce-page ul.products::before,
.hc-shop-products .woocommerce-page ul.products::after{
  display:none !important;
}

.hc-shop-products .woocommerce ul.products li.product,
.hc-shop-products .woocommerce-page ul.products li.product{
  width:100% !important;
  max-width:320px !important;
  margin:0 !important;
  float:none !important;
  clear:none !important;
}

.hc-shop-products .woocommerce .woocommerce-result-count{
  margin-bottom:18px;
}

.hc-shop-products .woocommerce .woocommerce-ordering{
  margin-bottom:18px;
}

/* FIX MÓVIL PLANES / SUSCRIPCIONES */
@media (max-width:900px){
  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"],
  .container[style*="grid-template-columns: repeat(3"],
  .container[style*="grid-template-columns:repeat(3"]{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
    width:100% !important;
  }

  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] > *,
  .container[style*="grid-template-columns: repeat(3"] > *,
  .container[style*="grid-template-columns:repeat(3"] > *{
    width:100% !important;
    min-width:0 !important;
    height:auto !important;
    padding:22px 18px !important;
    border-radius:26px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:space-between !important;
  }
}

@media (max-width:760px){
  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] p,
  .container[style*="grid-template-columns: repeat(3"] p,
  .container[style*="grid-template-columns:repeat(3"] p,
  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] li,
  .container[style*="grid-template-columns: repeat(3"] li,
  .container[style*="grid-template-columns:repeat(3"] li{
    font-size:16px !important;
    line-height:1.6 !important;
    word-break:normal !important;
    overflow-wrap:break-word !important;
    hyphens:none !important;
  }

  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] strong,
  .container[style*="grid-template-columns: repeat(3"] strong,
  .container[style*="grid-template-columns:repeat(3"] strong,
  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] .price,
  .container[style*="grid-template-columns: repeat(3"] .price,
  .container[style*="grid-template-columns:repeat(3"] .price{
    font-size:24px !important;
    line-height:1.2 !important;
    display:block !important;
    margin-top:18px !important;
    white-space:normal !important;
  }

  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] .btn,
  .container[style*="grid-template-columns: repeat(3"] .btn,
  .container[style*="grid-template-columns:repeat(3"] .btn,
  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] button,
  .container[style*="grid-template-columns: repeat(3"] button,
  .container[style*="grid-template-columns:repeat(3"] button,
  .container[style*="grid-template-columns:repeat(3,minmax(0,1fr))"] a[class*="btn"],
  .container[style*="grid-template-columns: repeat(3"] a[class*="btn"],
  .container[style*="grid-template-columns:repeat(3"] a[class*="btn"]{
    width:100% !important;
    min-height:52px !important;
    margin-top:20px !important;
    padding:14px 18px !important;
    border-radius:999px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
  }
}

/* SERVICES */
.hc-services-page .narrow-text{
  max-width:760px;
}

.hc-service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.hc-service-card{
  border-radius:32px;
  padding:28px;
  box-shadow:var(--shadow);
  min-width:0;
}

.hc-pink{ background:#fdecef; }
.hc-blue{ background:#edf5ff; }
.hc-cream{ background:#fff8ea; }
.hc-green{ background:#eff8ef; }

.hc-service-mini{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(26,26,26,.48);
  margin-bottom:10px;
}

.hc-service-card h3{
  margin-bottom:10px;
  font-size:30px;
  line-height:1.02;
}

.hc-service-desc{
  margin-bottom:18px;
  color:rgba(26,26,26,.78);
}

.hc-service-list{
  margin:0 0 22px;
  padding-left:18px;
  color:rgba(26,26,26,.78);
}

.hc-service-list li{
  margin-bottom:8px;
  line-height:1.5;
  text-transform:lowercase;
}

.hc-service-price{
  font-size:28px;
  font-weight:800;
  color:var(--black);
  margin:0 0 10px;
}

.hc-gift-block{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:0;
}

.hc-gift-block .dark-card p{
  margin-bottom:10px;
}

.hc-steps-grid .card{
  height:100%;
}

/* MOBILE CLUB PULSERAS */
@media (max-width:768px){
  .club-grid,
  .plans-grid,
  .subscription-grid,
  .club-plans,
  .planes-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .club-card,
  .plan-card,
  .subscription-card,
  .club-plan{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    display:flex !important;
    flex-direction:column !important;
    padding:24px 20px !important;
    border-radius:28px !important;
    min-height:auto !important;
  }

  .club-card p,
  .plan-card p,
  .subscription-card p,
  .club-plan p{
    font-size:1rem !important;
    line-height:1.45 !important;
    word-break:normal !important;
    overflow-wrap:break-word !important;
    hyphens:none !important;
  }

  .club-card .btn,
  .plan-card .btn,
  .subscription-card .btn,
  .club-plan .btn{
    width:100% !important;
    max-width:100% !important;
    margin-top:18px !important;
  }
}

/* FORZAR MOBILE EN SUSCRIPCIONES */
@media (max-width:768px){
  .wp-block-columns,
  .elementor-column-wrap,
  .elementor-row,
  .elementor-section .elementor-container,
  .club-grid,
  .plans-grid,
  .subscription-grid,
  .club-plans,
  .planes-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:18px !important;
  }

  .wp-block-column,
  .elementor-column,
  .club-card,
  .plan-card,
  .subscription-card,
  .club-plan{
    width:100% !important;
    max-width:100% !important;
    min-width:100% !important;
    flex:0 0 100% !important;
    margin:0 0 18px 0 !important;
  }

  .wp-block-columns .wp-block-column[style],
  .elementor-column[style],
  .club-card[style],
  .plan-card[style],
  .subscription-card[style],
  .club-plan[style]{
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
    flex-basis:100% !important;
  }

  .wp-block-column a,
  .elementor-column a,
  .club-card .btn,
  .plan-card .btn,
  .subscription-card .btn,
  .club-plan .btn{
    max-width:100% !important;
  }
}

/* CLUB + EXPERIENCIAS */
.club-experiencias-preview{
  width:100%;
  padding:16px 0 20px;
}

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

.club-experiencias-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(280px, .85fr);
  gap:22px;
  align-items:stretch;
}

.club-experiencias-card{
  display:block;
  background:#f7f4f1;
  border:1px solid rgba(0,0,0,.06);
  border-radius:32px;
  padding:28px;
  box-shadow:var(--shadow);
  min-width:0;
  width:100%;
}

.club-experiencias-eyebrow{
  display:block;
  margin:0 0 12px;
  font-size:12px;
  line-height:1;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(26,26,26,.48);
}

.club-experiencias-main h2{
  margin:0 0 16px;
  font-size:clamp(30px, 4vw, 56px);
  line-height:.95;
  letter-spacing:-.05em;
  text-transform:lowercase;
}

.club-experiencias-text{
  margin:0 0 14px;
  font-size:17px;
  line-height:1.65;
  color:rgba(26,26,26,.78);
  text-transform:lowercase;
}

.club-experiencias-progress{
  width:100%;
  height:14px;
  background:#e8e2de;
  border-radius:999px;
  overflow:hidden;
  margin:22px 0 10px;
}

.club-experiencias-progress-fill{
  width:10%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, #F4A7B9 0%, #92C1E9 100%);
}

.club-experiencias-count{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.4;
  color:rgba(26,26,26,.72);
  text-transform:lowercase;
}

.club-experiencias-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.club-experiencias-tags span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(26,26,26,.08);
  font-size:14px;
  line-height:1;
  color:rgba(26,26,26,.82);
  text-transform:lowercase;
  white-space:nowrap;
}

.club-experiencias-actions{
  margin-top:4px;
}

.club-experiencias-actions .btn,
.club-experiencias-actions .btn.btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.club-experiencias-side{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.club-experiencias-number{
  display:block;
  margin:0 0 10px;
  font-size:clamp(64px, 7vw, 108px);
  line-height:.9;
  font-weight:800;
  letter-spacing:-.05em;
  color:var(--black);
}

.club-experiencias-side-text{
  margin:0 0 16px;
  font-size:17px;
  line-height:1.65;
  color:rgba(26,26,26,.78);
  text-transform:lowercase;
}

.club-experiencias-link{
  display:inline-block;
  margin-top:auto;
  font-size:15px;
  font-weight:700;
  color:var(--black);
  text-decoration:none;
  text-transform:lowercase;
}

.club-experiencias-link:hover{
  opacity:.72;
}

/* RESPONSIVE GENERAL */
@media (max-width:980px){
  .hero-grid,
  .two-col,
  .footer-grid,
  .blog-grid,
  .product-grid,
  .card-grid,
  .bullet-grid{
    grid-template-columns:1fr 1fr;
  }

  .featured-products{
    grid-template-columns:1fr;
  }

  .hero-grid,
  .two-col,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .woocommerce-page .site-main,
  .woocommerce .site-main{
    padding:0 32px 64px !important;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products{
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)) !important;
  }

  .hc-shop-products .hc-shop-products-inner{
    padding-left:24px;
    padding-right:24px;
  }

  .hc-shop-products .woocommerce ul.products,
  .hc-shop-products .woocommerce-page ul.products{
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)) !important;
  }

  .hc-service-grid{
    grid-template-columns:1fr;
  }

  .hc-gift-block{
    grid-template-columns:1fr;
  }

  .club-experiencias-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .club-experiencias-card{
    padding:22px;
    border-radius:26px;
  }

  .club-experiencias-main h2{
    font-size:40px;
  }

  .club-experiencias-text,
  .club-experiencias-side-text{
    font-size:16px;
  }

  .club-experiencias-number{
    font-size:72px;
  }

  .club-experiencias-tags span{
    font-size:13px;
    padding:9px 13px;
    white-space:normal;
  }
}

@media (max-width:760px){
  .site-nav{
    display:none;
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    background:var(--white);
    box-shadow:var(--shadow);
    border-radius:20px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
  }

  .site-nav.is-open{
    display:flex;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .brand,
  .footer-brand{
    font-size:34px;
  }

  .blog-grid,
  .product-grid,
  .card-grid,
  .bullet-grid,
  .featured-products{
    grid-template-columns:1fr;
  }

  .hero-copy,
  .hero-image,
  .dark-card,
  .light-card,
  .info-strip,
  .blog-body,
  .simple-card,
  .centered-card,
  .entry-card{
    padding:22px;
  }

  .hero-image img{
    min-height:300px;
  }

  .product-card img{
    height:380px;
  }

  .product-top{
    flex-direction:column;
    gap:8px;
  }

  .price{
    font-size:24px;
  }

  .woocommerce-page .site-main,
  .woocommerce .site-main{
    padding:0 20px 56px !important;
  }

  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img{
    height:320px !important;
  }

  .hc-cute-banner{
    border-radius:30px;
    padding:20px 18px;
    margin:28px 0;
  }

  .hc-cute-banner span{
    font-size:24px;
  }

  .hc-shop-products .hc-shop-products-inner{
    padding-left:16px;
    padding-right:16px;
  }

  .hc-shop-products .woocommerce ul.products,
  .hc-shop-products .woocommerce-page ul.products{
    grid-template-columns:1fr !important;
  }

  .hc-service-card{
    padding:22px 18px;
    border-radius:26px;
  }

  .hc-service-card h3{
    font-size:24px;
  }

  .hc-service-price{
    font-size:24px;
  }

  .hc-steps-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:480px){
  .club-experiencias-preview{
    padding:10px 0 14px;
  }

  .club-experiencias-card{
    padding:18px;
    border-radius:22px;
  }

  .club-experiencias-main h2{
    font-size:32px;
  }

  .club-experiencias-text,
  .club-experiencias-side-text{
    font-size:15px;
    line-height:1.55;
  }

  .club-experiencias-number{
    font-size:58px;
  }

  .club-experiencias-tags{
    gap:8px;
  }

  .club-experiencias-tags span{
    font-size:12px;
    padding:8px 12px;
  }
}

/* LOGOS MARQUEE INFINITO */

.logos-marquee{
  position:relative;
  overflow:hidden;
  width:100%;
  padding:10px 0 30px;
}

.logos-track{
  display:flex;
  align-items:center;
  gap:72px;
  width:max-content;
  animation:logosScroll 30s linear infinite;
}

.logo-item{
  flex:0 0 auto;
  min-width:180px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo-item img{
  width:auto;
  max-width:180px;
  max-height:82px;
  object-fit:contain;
  opacity:.96;
  transition:transform .25s ease, opacity .25s ease;
}

.logo-item:hover img{
  transform:scale(1.06);
  opacity:1;
}

@keyframes logosScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@media (max-width:768px){
  .logos-track{
    gap:42px;
    animation-duration:22s;
  }

  .logo-item{
    min-width:120px;
  }

  .logo-item img{
    max-width:120px;
    max-height:58px;
  }
}