.imagen-principal{
  display:block;
  width:100%;
  height:auto;

  border-radius:16px;
  overflow:hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    0 6px 14px rgba(0,0,0,0.10);

  /* hace que se sienta más “nítida” sin exagerar */
  filter: contrast(1.02) saturate(1.04);

  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.imagen-principal:hover{
  transform: translateY(-3px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.22),
    0 10px 22px rgba(0,0,0,0.14);

  filter: contrast(1.04) saturate(1.06);
}




/* BOTÓN CTA ESENCIAL */
.btn-cta {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1a73e8, #0b57d0);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}

/* hover */
.btn-cta:hover {
  transform: translateY(-2px);
}

/* quitar contorno azul */
.btn-cta:focus {
  outline: none;
}

/* CONTENEDOR FAQ — contenido centrado */
.faq-container {
  max-width: 1000px;   /* controla qué tan centrado queda */
  margin: 0 auto;      /* centra horizontalmente */
  padding: 0 24px;     /* espacio lateral interno */
}

body {
  background-color: #f5f7fa;
}




/* CONTENEDOR IMAGEN PREMIUM */
.img-premium {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.35s ease;
}
/* IMAGEN PREMIUM (solo cuando agregues esta clase) */
.img-efecto-premium {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.img-efecto-premium img {
  display: block;
  width: 100%;
  transition: all 0.35s ease;
}

/* Hover: zoom + ligera rotación */
.img-efecto-premium:hover img {
  transform: scale(1.05) rotate(1deg);
}

/* Sombra elegante */
.img-efecto-premium:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Brillo */
.img-efecto-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.6s;
}

.img-efecto-premium:hover::after {
  left: 130%;
}

.titulo-premium {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}





/* ===== CONTENEDOR ===== */
.cta-link {
  position: relative;
  color: #ffffff !important;
  display: inline-block;
  cursor: pointer;
  background: transparent !important;

  /* clave para que todo quede alineado */
  line-height: 1.2;
  padding-right: 20px;  /* espacio para flecha */
  padding-bottom: 4px;  /* espacio para underline */
  vertical-align: middle;
}

/* evitar estilos heredados */
.cta-link:hover {
  background: transparent !important;
  color: #ffffff !important;
}

/* ===== UNDERLINE (solo en hover, elegante) ===== */
.cta-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.cta-link:hover::before {
  width: 100%;
    text-align: center;
margin: 0 auto;
}

/* ===== FLECHA (alineada a la línea del texto) ===== */
.cta-link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: -0.10em;           /* alinea con el texto (Zoho-friendly) */
  font-size: 1.25em;     /* más grande por defecto */
  line-height: 1;        /* evita que “baje” */
  transform: scale(1.2); /* tamaño base */
  transform-origin: center;
  transition: transform 0.25s ease;
}

/* hover → flecha más grande */
.cta-link:hover::after {
  transform: scale(1.7);
}



/* ====== TARJETAS MÉTODOS DE PAGO ====== */
.pay-card{
  background:#ffffff;
  border:1px solid #E5E7EB;
  border-radius:12px;
  padding:28px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  position:relative;
}

/* franja superior (color por variante) */
.pay-card--blue{ border-top:4px solid #2563EB; }
.pay-card--red{  border-top:4px solid #DC2626; }


/* header interno */
.pay-card__title{
  font-size:20px;
  font-weight:700;
  line-height:1.2;
  margin:0 0 8px 0;
  color:#111827;
  display:flex;
  align-items:center;
  gap:10px;
}

.pay-card__subtitle{
  font-size:14px;
  color:#6B7280;
  margin:0 0 18px 0;
}

/* bloque "Cómo pagar:" */
.pay-card__label{
  font-size:16px;
  font-weight:700;
  color:#111827;
  margin:0 0 10px 0;
}

.pay-card__list{
  margin:0 0 18px 0;
  padding-left:18px; /* sangría números */
  color:#374151;
  font-size:15px;
  line-height:1.7;
}

.pay-card__list li{
  margin:0 0 8px 0;
}

/* caja informativa (nota/alerta) */
.pay-note{
  border-radius:10px;
  padding:12px 14px;
  font-size:14px;
  line-height:1.6;
  border:1px solid transparent;
}

.pay-note--blue{
  background:#E6F0FF;
  border-color:#BFDBFE;
  color:#1E3A8A;
}

.pay-note--red{
  background:#FDECEC;
  border-color:#FECACA;
  color:#7F1D1D;
}

/* opcional: ícono dentro del título (emoji o icono) */
.pay-card__icon{
  font-size:22px;
  line-height:1;
}

/* ====== VARIANTE PARA PASOS (4 pasos) ====== */
.pay-card--step{
  border-top:4px solid #6366F1;   /* línea superior morado-azul */
  background:#F8FAFC;            /* fondo suave */
}

.hero-delivery{
background: rgba(255,255,255,0.04);
border-radius: 14px;
display: inline-block;
}



















































































































/* =========================================
EFECTO PRODUCTO PREMIUM – ROTACION + ZOOM + SHINE 4s
========================================= */


/* TARJETA */

/* TARJETA */

.zpelem-storecategory .theme-prod-box .theme-product-box-content{

background:#ffffff !important;
border-radius:18px !important;
overflow:hidden !important;
padding:14px !important;
border:1px solid rgba(0,0,0,0.06) !important;

transition:transform .30s ease, box-shadow .30s ease, background .30s ease !important;

box-shadow:
0 8px 22px rgba(0,0,0,0.06),
0 2px 6px rgba(0,0,0,0.04) !important;

}

.zpelem-storecategory .theme-prod-box .theme-product-box-content:hover{

transform:translateY(-4px) !important;

box-shadow:
0 18px 40px rgba(0,0,0,0.10),
0 6px 14px rgba(0,0,0,0.06) !important;

background:#ffffff !important;
border-color:rgba(30,58,138,0.08) !important;

}



/* CONTENEDOR IMAGEN */

.zpelem-storecategory .theme-product-image-area{

position:relative;

overflow:hidden;

border-radius:10px;

}



/* IMAGEN BASE */

.zpelem-storecategory .theme-product-image-area img{

width:100%;
display:block;

transition:transform .6s ease;

transform:perspective(1400px) rotateY(0deg) rotateX(0deg) scale(1);

}



/* HOVER – ZOOM INTERNO + ROTACION */

.zpelem-storecategory 
.theme-product-box-content:hover 
.theme-product-image-area img{

animation:productRotate 4s ease-in-out infinite;

transform:perspective(1400px) rotateY(-8deg) rotateX(2deg) scale(1.08);

}



/* ROTACION LENTA 4 SEGUNDOS */

@keyframes productRotate{

0%{
transform:perspective(1400px) rotateY(-6deg) rotateX(2deg) scale(1.08);
}

50%{
transform:perspective(1400px) rotateY(-10deg) rotateX(1deg) scale(1.08);
}

100%{
transform:perspective(1400px) rotateY(-6deg) rotateX(2deg) scale(1.08);
}

}



/* SHINE SUAVE */

.zpelem-storecategory .theme-product-image-area::after{

content:"";

position:absolute;

top:-120%;
left:-80%;

width:60%;
height:320%;

background:linear-gradient(
120deg,
transparent 0%,
rgba(255,255,255,0.08) 50%,
transparent 100%
);

transform:rotate(25deg);

pointer-events:none;

opacity:0;

}



/* SHINE SOLO EN HOVER */

.zpelem-storecategory 
.theme-product-box-content:hover 
.theme-product-image-area::after{

opacity:1;

animation:shineSweep 7s linear infinite;

}



/* SHINE 4 SEGUNDOS */

@keyframes shineSweep{

0%{
left:-80%;
}

100%{
left:140%;
}

}



/* TITULO PRODUCTO */

/* TITULO PRODUCTO */

.zpelem-storecategory .theme-product-name h2 a{

color:#1F2937;
font-weight:700;
font-size:17px;
line-height:1.35;
letter-spacing:-0.2px;
text-decoration:none;
display:inline-block;
margin-top:6px;

position:relative;

transition:color .25s ease;

}



/* UNDERLINE PREMIUM */

.zpelem-storecategory .theme-product-name h2 a::after{

content:"";
position:absolute;

left:50%;
bottom:-3px;

width:0;
height:1px;

background:#1E3A8A;

transform:translateX(-50%);
transition:width .35s ease;

}

/* HOVER TITULO */

.zpelem-storecategory .theme-product-name h2 a:hover{

color:#1E3A8A;

}

.zpelem-storecategory .theme-product-name h2 a:hover::after{

width:100%;

}

/* QUITAR DESCRIPCION */

.zpelem-storecategory .theme-product-short-description{

display:none !important;

}



/* PRECIO */

.zpelem-storecategory .theme-product-total-price-label{

font-size:20px;

font-weight:500;

color:#111827;

}



.zpelem-storecategory .theme-section-heading{
display:none;
}

















































































/* =========================
   MOCKUP PACK
   ========================= */

.mockup-pack{
position:relative;
min-height:420px;
overflow:visible;
display:flex;
align-items:center;
justify-content:center;
padding:10px;
}

/* =========================
   VETERINARIA + PSICOLOGÍA
   ========================= */

.mockup-pack::before,
.mockup-pack::after{

content:"";
position:absolute;

width:220px;
aspect-ratio:2/3;

background-repeat:no-repeat;
background-size:contain;
background-position:center -12px;

transform-style:preserve-3d;
backface-visibility:hidden;

will-change:transform;

animation:cardFloat 12s linear infinite;
}

/* Psicología (atrás derecha) */

.mockup-pack::after{

z-index:3;

background-image:url("https://www.tuguiacenevaloficial.com/PSI.png");

--tx:45px;
--ty:-6px;
--rot:2deg;
--sc:1;

}

/* Veterinaria (frontal) */

.mockup-pack::before{

z-index:5;

background-image:url("https://www.tuguiacenevaloficial.com/VET.png");

--tx:-10px;
--ty:10px;
--rot:-2deg;
--sc:.985;

animation-delay:-2s;

}

/* =========================
   PEDAGOGÍA
   ========================= */

.ped-card{

position:absolute !important;

left:50%;
top:50%;

width:220px !important;
height:auto !important;

border-radius:0 !important;
box-shadow:none !important;

z-index:6;

transform-style:preserve-3d;
backface-visibility:hidden;

will-change:transform;

--tx:-50px;
--ty:75px;
--rot:-2deg;
--sc:.96;

animation:cardFloat 12s linear infinite;
animation-delay:-4s;

transform:translate(var(--tx),var(--ty)) rotate(var(--rot)) scale(var(--sc));

}

/* =========================
   ANIMACIÓN
   ========================= */

@keyframes cardFloat{

0%,100%{
transform:translate(var(--tx),var(--ty)) rotate(var(--rot)) scale(var(--sc));
}

50%{
transform:translate(var(--tx),calc(var(--ty) - 14px)) rotate(calc(var(--rot) - 1deg)) scale(var(--sc));
}

}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:980px){

.mockup-pack::before,
.mockup-pack::after,
.ped-card{
width:200px !important;
}

.mockup-pack::after{
--tx:35px;
}

.mockup-pack::before{
--tx:-8px;
}

.ped-card{
--tx:80px;
--ty:65px;
}

}

@media (max-width:640px){

.mockup-pack{
min-height:360px;
}

/* ocultamos pedagogía en móvil */
.ped-card{
display:none !important;
}

.mockup-pack::before,
.mockup-pack::after{
width:190px;
}

}

/* =========================
   REDUCE MOTION
   ========================= */

@media (prefers-reduced-motion: reduce){

.mockup-pack::before,
.mockup-pack::after,
.ped-card{
animation:none!important;
}
    
    .mockup-pack::before,
.mockup-pack::after,
.ped-card{

box-shadow:
0 25px 45px rgba(0,0,0,0.20),
0 8px 18px rgba(0,0,0,1);

}

}


.btn-efecto {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 14px;
  overflow: visible;
}

.btn-efecto:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.columna-boton {
  text-align: center;
}