¡Ya veo exactamente qué pasa! Fíjate en el texto que has pegado: tienes repetidos los bloques de CSS cinco veces seguidas, con fragmentos mezclados de versiones anteriores (por eso se solapan las reglas y el móvil no sabe qué hacer). Además, en el último bloque multimedia tenías espacios raros que daban error.

Para solucionarlo de una vez por todas y dejar tu CSS limpio, ordenado y preparado para que la home y el resto de páginas (Servicios, Metodología, Lactancia, Opiniones y Menú) funcionen perfectamente sin romperse, borra todo lo que tienes en Apariencia > Personalizar > CSS adicional y pega únicamente este código definitivo:

Copia y pega este CSS único y definitivo:
CSS
/* ==========================================================================
   ESTILOS GENERALES Y COMPATIBILIDAD WEB
   ========================================================================== */
.pikabu-custom-redesign {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #4d5050;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.pikabu-custom-redesign * {
	box-sizing: border-box;
}

/* Ocultar las cabeceras nativas antiguas de WordPress */
.site-header, #masthead, .ast-main-header, .header-main, header, .sharedaddy, .sd-sharing, .jp-sharing-buttons {
	display: none !important;
}

/* ==========================================================================
   CABECERA Y LOGO (COMPARTIDO EN TODAS LAS PÁGINAS)
   ========================================================================== */
.pikabu-header-brand {
	text-align: center;
	margin-bottom: 25px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pikabu-logo-img {
	max-width: 280px;
	height: auto;
	display: inline-block;
	margin-bottom: 15px;
	filter: drop-shadow(0 8px 16px rgba(121, 86, 132, 0.22));
	transition: transform .3s ease;
}

.pikabu-logo-img:hover {
	transform: scale(1.03);
}

.pikabu-brand-text-container h1 {
	font-size: 2.2rem;
	color: #4a3852;
	margin: 5px 0;
	font-weight: 800;
}

.pikabu-brand-text-container p {
	font-size: 1rem;
	color: #795684;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0;
}

/* ==========================================================================
   MENÚ DE PÍLDORAS (PC: CENTRADO / MÓVIL: DESLIZABLE HORIZONTAL)
   ========================================================================== */
.pikabu-smart-nav,
.pikabu-pills-nav,
.pikabu-new-header-nav {
	margin-bottom: 40px;
	width: 100%;
}

.pikabu-pills-container,
.pikabu-nav-links-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px;
	max-width: 950px;
	margin: 0 auto;
}

.pikabu-pill-btn,
.pikabu-nav-btn {
	background: linear-gradient(135deg, #8a6495 0%, #795684 100%);
	color: #ffffff !important;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: .95rem;
	font-weight: 700;
	box-shadow: 0 5px 18px rgba(121, 86, 132, 0.25);
	transition: all .3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	white-space: nowrap;
}

.pikabu-pill-btn:hover, .pikabu-pill-btn.active,
.pikabu-nav-btn:hover, .pikabu-nav-btn.active {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px rgba(121, 86, 132, 0.4);
	background: linear-gradient(135deg, #9973a4 0%, #8a6495 100%);
}

.pill-contact {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	box-shadow: 0 5px 18px rgba(37, 211, 102, 0.3);
}

.pill-contact:hover {
	background: linear-gradient(135deg, #2beb70 0%, #15a08f 100%);
	box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   TARJETAS FOTOGRÁFICAS DE LA PÁGINA DE INICIO
   ========================================================================== */
.pikabu-home-content-container {
	max-width: 950px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.pikabu-photo-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	padding: 60px 40px;
	text-align: center;
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border: 3px solid #ffffff;
	background-size: cover;
	background-position: center;
}

.card-curso, .pikabu-card-1 {
	background-image: linear-gradient(rgba(25, 25, 25, 0.72), rgba(25, 25, 25, 0.72)), url('https://escuelapikabu.com/wp-content/uploads/2023/10/2023-10-02-10-31-56-140-1.jpg');
}

.card-opinions, .pikabu-card-2 {
	background-image: linear-gradient(rgba(25, 25, 25, 0.72), rgba(25, 25, 25, 0.72)), url('https://escuelapikabu.com/wp-content/uploads/2023/10/premio.jpg');
}

.card-content-inner, .pikabu-card-content {
	position: relative;
	z-index: 2;
}

.card-content-inner h2, .pikabu-card-content h2 {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: .5px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.divider-line {
	width: 80px;
	height: 3px;
	background-color: #ffffff;
	margin: 0 auto 20px;
	border-radius: 2px;
}

.quote-symbol {
	font-size: 3rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: -10px;
	display: block;
}

.card-content-inner p, .pikabu-card-content p {
	font-size: 1.1rem;
	color: #f0f0f0;
	line-height: 1.6;
	margin-bottom: 15px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.pikabu-outline-btn, .pikabu-card-btn {
	display: inline-block;
	background: transparent;
	color: #ffffff !important;
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 700;
	border: 2px solid #ffffff;
	margin-top: 15px;
	transition: all .3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pikabu-outline-btn:hover, .pikabu-card-btn:hover {
	background: #ffffff;
	color: #4a3852 !important;
	transform: translateY(-2px);
}

/* ==========================================================================
   REDES SOCIALES (COMPARTIDO)
   ========================================================================== */
.pikabu-social-section {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	margin-top: 40px;
	padding-top: 25px;
	border-top: 2px dashed #f0e6f3;
	width: 100%;
}

.pikabu-social-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: transform .3s;
}

.pikabu-social-item:hover {
	transform: scale(1.1);
}

.pikabu-social-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 5px 15px rgba(121, 86, 132, 0.2);
	margin-bottom: 6px;
	border: 2px solid #fff;
	color: #ffffff !important;
	font-size: 22px;
}

.circle-ig {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #df5950 45%, #a237b6 60%, #515ecf 90%);
}

.circle-fb {
	background-color: #1877f2;
}

.circle-mail {
	background-color: #795684;
}

.pikabu-social-item span {
	font-size: .85rem;
	font-weight: 600;
	color: #795684;
}

/* ==========================================================================
   SECCIONES ESPECÍFICAS (SERVICIOS, METODOLOGÍA, LACTANCIA, OPINIONES, MENÚ)
   ========================================================================== */
.pikabu-services-container,
.pikabu-methodology-container,
.pikabu-lactancia-container,
.pikabu-opinions-container,
.pikabu-menu-page-container {
	max-width: 1000px;
	margin: 0 auto 40px;
	background: #ffffff;
	padding: 35px;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(121, 86, 132, 0.1);
	border: 2px solid #f0e6f3;
}

.pikabu-services-grid, .pikabu-meth-grid, .pikabu-lac-grid, .pikabu-videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.pikabu-services-grid {
	grid-template-columns: repeat(2, 1fr);
}

/* ==========================================================================
   ADAPTACIÓN MÓVIL (MENÚ DESLIZABLE TÁCTIL ESTILO GO TO PIKA)
   ========================================================================== */
@media (max-width: 992px) {
	.pikabu-logo-img {
		max-width: 200px;
	}
	
	.pikabu-brand-text-container h1 {
		font-size: 1.5rem;
	}
	
	.pikabu-brand-text-container p {
		font-size: .85rem;
	}
	
	/* Menú superior convertido en barra horizontal deslizable con el dedo */
	.pikabu-pills-container,
	    .pikabu-nav-links-container {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		justify-content: flex-start !important;
		gap: 10px !important;
		padding: 5px 15px 15px !important;
		width: 100% !important;
	}
	
	.pikabu-pills-container::-webkit-scrollbar,
	    .pikabu-nav-links-container::-webkit-scrollbar {
		display: none !important;
	}
	
	.pikabu-pill-btn,
	    .pikabu-nav-btn {
		padding: 10px 18px !important;
		font-size: .85rem !important;
		flex-shrink: 0 !important;
	}
	
	.pikabu-photo-card {
		padding: 40px 20px;
	}
	
	.card-content-inner h2 {
		font-size: 1.4rem;
	}
	
	.pikabu-services-grid, .pikabu-meth-grid, .pikabu-lac-grid, .pikabu-videos-grid {
		grid-template-columns: 1fr !important;
		gap: 15px;
	}
}

/* Ocultar la barra flotante de suscripción y menús flotantes de WordPress */
#wpcom-bar, 
.storefront-handheld-footer-bar, 
#jp-carousel-comment-form, 
.jetpack-likes-widget-wrapper, 
div[id^="wordpress-com-gravatar"], 
iframe[src*="jetpack.wordpress.com/likes"], 
iframe[src*="widgets.wp.com"],
div[id*="admin-bar"] {
	display: none !important;
}

/* --- ESTILOS DINÁMICOS PARA LA PÁGINA DEL LOGO Y HISTORIA --- */
.pikabu-dynamic-story-container {
	max-width: 950px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.story-main-title {
	text-align: center;
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	padding: 35px 25px;
	border-radius: 20px;
	border: 2px solid #e2cfe6;
	box-shadow: 0 8px 25px rgba(121, 86, 132, 0.06);
}

.story-main-title h2 {
	font-size: 2.2rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 8px;
}

.story-subtitle {
	font-size: 1.05rem;
	color: #795684;
	font-weight: 600;
	margin: 0;
}

/* Filas de historias en tarjetas con relieve */
.story-row-box {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 35px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 6px 20px rgba(121, 86, 132, 0.05);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: transform .3s ease, box-shadow .3s ease;
}

.story-row-highlight {
	background: linear-gradient(135deg, #ffffff 0%, #fcf9fd 100%);
	border-color: #e4d1eb;
}

.story-row-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(121, 86, 132, 0.1);
}

.story-icon-float {
	font-size: 2.5rem;
	background: #f0e6f3;
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(121, 86, 132, 0.15);
}

.story-text-block h3 {
	font-size: 1.35rem;
	color: #4a3852;
	margin-bottom: 10px;
	font-weight: 700;
}

.story-text-block p {
	font-size: 1.02rem;
	color: #5c3f66;
	line-height: 1.6;
	margin-bottom: 10px;
}

.story-text-block p:last-child {
	margin-bottom: 0;
}

/* Separador dinámico central */
.story-section-divider {
	text-align: center;
	margin: 15px 0;
	position: relative;
}

.story-section-divider span {
	background: #795684;
	color: #ffffff;
	padding: 8px 25px;
	border-radius: 20px;
	font-size: .95rem;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(121, 86, 132, 0.2);
}

/* Grid de los 3 elementos del logo */
.story-logo-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.logo-feature-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 25px 20px;
	text-align: center;
	border: 2px solid #f0e6f3;
	box-shadow: 0 6px 18px rgba(121, 86, 132, 0.06);
	transition: transform .3s ease;
}

.logo-feature-card:hover {
	transform: translateY(-4px);
}

.card-emoji-icon {
	font-size: 2.2rem;
	margin-bottom: 12px;
}

.logo-feature-card h4 {
	font-size: 1.1rem;
	color: #4a3852;
	margin-bottom: 10px;
	font-weight: 700;
}

.logo-feature-card p {
	font-size: .9rem;
	color: #5c3f66;
	line-height: 1.5;
	margin: 0;
}

/* Banner inferior de cierre */
.story-footer-banner {
	background: linear-gradient(135deg, #795684 0%, #5c3f66 100%);
	color: #ffffff;
	border-radius: 20px;
	padding: 35px 30px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(121, 86, 132, 0.2);
}

.story-footer-banner h3 {
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 12px;
	font-weight: 700;
}

.story-footer-banner p {
	font-size: 1.05rem;
	color: #f7f1f9;
	line-height: 1.6;
	margin: 0;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 992px) {
	.story-row-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 25px 20px;
	}
	
	.story-logo-cards-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.story-main-title h2 {
		font-size: 1.7rem;
	}
	
	.story-footer-banner {
		padding: 25px 15px;
	}
}

/* --- REDUCIR TAMAÑO DE LOS BOTONES DEL MENÚ --- */
.pikabu-pill-btn,
.pikabu-nav-btn {
	padding: 7px 16px !important;
/* Menos altura y anchura */
	font-size: .85rem !important;
/* Texto más pequeño y fino */
	border-radius: 20px !important;
/* Píldoras más estilizadas */
	gap: 5px !important;
}

/* Reducir también un poco la separación general de la barra para que ocupe menos */
.pikabu-smart-nav,
.pikabu-pills-nav,
.pikabu-new-header-nav {
	margin-bottom: 25px !important;
}

/* --- ESTILOS DINÁMICOS Y VIVOS PARA METODOLOGÍA --- */
.pikabu-methodology-vibrant {
	max-width: 1050px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Banner de Introducción */
.meth-intro-banner {
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	border: 2px solid #e2cfe6;
	border-radius: 22px;
	padding: 35px 30px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(121, 86, 132, 0.06);
}

.meth-intro-banner h2 {
	font-size: 2.2rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 12px;
}

.meth-intro-text {
	font-size: 1.05rem;
	color: #5c3f66;
	line-height: 1.6;
	max-width: 900px;
	margin: 0 auto;
}

/* Cuadrícula de Tarjetas Vivas (3 columnas) */
.meth-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.meth-card-item {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 24px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 8px 22px rgba(121, 86, 132, 0.06);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.meth-card-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(121, 86, 132, 0.12);
	border-color: #d1b6dc;
}

/* Círculo con el icono flotante */
.meth-icon-circle {
	font-size: 2.2rem;
	background: #f7f1f9;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 18px;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.1);
	border: 2px solid #f0e6f3;
}

.meth-card-item h3 {
	font-size: 1.2rem;
	color: #4a3852;
	margin-bottom: 10px;
	font-weight: 700;
}

.meth-card-item p {
	font-size: .94rem;
	color: #5c3f66;
	line-height: 1.6;
	margin: 0;
}

/* Caja de Cita de Dirección Destacada */
.meth-director-quote {
	background: linear-gradient(135deg, #795684 0%, #5c3f66 100%);
	color: #ffffff;
	border-radius: 22px;
	padding: 35px 40px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(121, 86, 132, 0.2);
	position: relative;
}

.quote-icon-badge {
	font-size: 2rem;
	background: rgba(255, 255, 255, 0.2);
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto 15px;
}

.meth-director-quote p {
	font-size: 1.1rem;
	font-style: italic;
	color: #fcf9fd;
	line-height: 1.7;
	margin-bottom: 15px;
}

.quote-author {
	font-size: .98rem;
	color: #f0e6f3;
	display: block;
	letter-spacing: .5px;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 992px) {
	.meth-cards-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.meth-intro-banner {
		padding: 25px 15px;
	}
	
	.meth-intro-banner h2 {
		font-size: 1.7rem;
	}
	
	.meth-director-quote {
		padding: 25px 20px;
	}
}

/* --- ESTILOS DINÁMICOS Y VIVOS PARA LACTANCIA MATERNA --- */
.pikabu-lactancia-vibrant {
	max-width: 1050px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* Banner Hero Superior */
.lac-hero-banner {
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	border: 2px solid #e2cfe6;
	border-radius: 22px;
	padding: 35px;
	box-shadow: 0 8px 25px rgba(121, 86, 132, 0.06);
	text-align: center;
}

.lac-hero-banner h2 {
	font-size: 2.2rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 12px;
}

.lac-hero-desc {
	font-size: 1.05rem;
	color: #5c3f66;
	line-height: 1.6;
	margin-bottom: 15px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.lac-hero-highlight {
	background: #ffffff;
	padding: 20px 25px;
	border-radius: 16px;
	border-left: 5px solid #795684;
	font-size: 1.02rem;
	color: #4a3852;
	line-height: 1.6;
	text-align: left;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.05);
	margin: 0;
}

/* Cuadrícula de Tarjetas Superiores (3 columnas) */
.lac-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.lac-card-item {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 24px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 8px 22px rgba(121, 86, 132, 0.06);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.lac-card-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(121, 86, 132, 0.12);
	border-color: #d1b6dc;
}

.lac-icon-circle {
	font-size: 2.2rem;
	background: #f7f1f9;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 18px;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.1);
	border: 2px solid #f0e6f3;
}

.lac-card-item h3 {
	font-size: 1.2rem;
	color: #4a3852;
	margin-bottom: 15px;
	font-weight: 700;
}

.lac-custom-list {
	margin: 0;
	padding-left: 18px;
	width: 100%;
}

.lac-custom-list li {
	font-size: .94rem;
	color: #5c3f66;
	line-height: 1.5;
	margin-bottom: 10px;
}

.lac-custom-list li:last-child {
	margin-bottom: 0;
}

/* Cuadrícula de Preguntas Frecuentes (2 columnas abajo) */
.lac-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.lac-faq-box {
	background: #ffffff;
	border-radius: 18px;
	padding: 25px 22px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 6px 18px rgba(121, 86, 132, 0.05);
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.faq-icon {
	font-size: 2rem;
	background: #f7f1f9;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid #f0e6f3;
}

.faq-content h4 {
	font-size: 1.05rem;
	color: #795684;
	margin-bottom: 8px;
	font-weight: 700;
}

.faq-content p {
	font-size: .94rem;
	color: #5c3f66;
	line-height: 1.5;
	margin: 0;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 992px) {
	.lac-cards-grid,
	    .lac-faq-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.lac-hero-banner {
		padding: 25px 15px;
	}
	
	.lac-hero-banner h2 {
		font-size: 1.7rem;
	}
}

/* --- ESTILOS DINÁMICOS PARA OPINIONES Y VÍDEOS --- */
.pikabu-opinions-vibrant {
	max-width: 1000px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.op-main-title {
	text-align: center;
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	padding: 30px 20px;
	border-radius: 20px;
	border: 2px solid #e2cfe6;
	box-shadow: 0 6px 20px rgba(121, 86, 132, 0.05);
}

.op-main-title h2 {
	font-size: 2.1rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 8px;
}

.op-main-title p {
	font-size: 1.02rem;
	color: #795684;
	font-weight: 600;
	margin: 0;
}

/* Tarjetas de Vídeo Intuitivas (Grid de 3) */
.op-videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.op-video-card {
	background: linear-gradient(135deg, #8a6495 0%, #795684 100%);
	border-radius: 18px;
	padding: 25px 20px;
	text-decoration: none;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 6px 18px rgba(121, 86, 132, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: transform .3s ease, box-shadow .3s ease;
}

.op-video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(121, 86, 132, 0.4);
	background: linear-gradient(135deg, #9973a4 0%, #8a6495 100%);
}

.op-play-icon {
	font-size: 1.5rem;
	background: #ffffff;
	color: #795684;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding-left: 3px;
/* Centrar ópticamente el icono de play */
}

.op-video-info h3 {
	font-size: 1.05rem;
	color: #ffffff;
	margin-bottom: 8px;
	font-weight: 700;
}

.op-video-info span {
	font-size: .82rem;
	color: #f0e6f3;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	background: rgba(0, 0, 0, 0.15);
	padding: 4px 10px;
	border-radius: 10px;
}

/* Insignia Google */
.op-google-badge {
	background: #ffffff;
	border: 2px solid #f0e6f3;
	border-radius: 18px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.05);
}

.op-google-stars {
	font-size: 1.5rem;
	color: #ffb400;
	letter-spacing: 2px;
	margin-bottom: 6px;
}

.op-google-text {
	font-size: .98rem;
	color: #4a3852;
}

/* Carrusel Automático de Reseñas en CSS Puro */
.op-carousel-box {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 8px 25px rgba(121, 86, 132, 0.08);
	padding: 45px 35px;
	min-height: 230px;
	overflow: hidden;
}

.op-carousel-track {
	position: relative;
	width: 100%;
	height: 140px;
}

.op-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
	box-sizing: border-box;
	padding: 0 15px;
	animation: fadeOpCarousel 40s infinite;
}

/* Sincronización para 8 reseñas (5 segundos cada una) */
.op-slide:nth-child(1) {
	animation-delay: 0;
}

.op-slide:nth-child(2) {
	animation-delay: 5s;
}

.op-slide:nth-child(3) {
	animation-delay: 10s;
}

.op-slide:nth-child(4) {
	animation-delay: 15s;
}

.op-slide:nth-child(5) {
	animation-delay: 20s;
}

.op-slide:nth-child(6) {
	animation-delay: 25s;
}

.op-slide:nth-child(7) {
	animation-delay: 30s;
}

.op-slide:nth-child(8) {
	animation-delay: 35s;
}

@keyframes fadeOpCarousel {
	0% {
		opacity: 0;
		transform: scale(0.98);
	}
	
	2.5% {
		opacity: 1;
		transform: scale(1);
	}
	
	12.5% {
		opacity: 1;
		transform: scale(1);
	}
	
	15% {
		opacity: 0;
		transform: scale(0.98);
	}
	
	100% {
		opacity: 0;
		transform: scale(0.98);
	}
}

.slide-stars {
	font-size: 1.2rem;
	color: #ffb400;
	margin-bottom: 12px;
}

.slide-text {
	font-size: 1.05rem;
	color: #4d5050;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 15px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.slide-author {
	font-size: .95rem;
	font-weight: 700;
	color: #795684;
	letter-spacing: .5px;
}

.op-carousel-hint {
	text-align: center;
	font-size: .82rem;
	color: #9c82a5;
	margin-top: 15px;
	font-weight: 600;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 992px) {
	.op-videos-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.op-carousel-box {
		padding: 30px 15px;
		min-height: 260px;
	}
	
	.op-carousel-track {
		height: 190px;
	}
	
	.slide-text {
		font-size: .95rem;
	}
}

/* ==========================================================================
   ESTILOS GENERALES Y COMPATIBILIDAD WEB
   ========================================================================== */
.pikabu-custom-redesign {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #4d5050;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.pikabu-custom-redesign * {
	box-sizing: border-box;
}

/* Ocultar las cabeceras nativas de WordPress y barras flotantes */
.site-header, #masthead, .ast-main-header, .header-main, header, .sharedaddy, .sd-sharing, .jp-sharing-buttons, #wpcom-bar, .storefront-handheld-footer-bar, div[id*="admin-bar"] {
	display: none !important;
}

/* ==========================================================================
   CABECERA Y LOGO (COMPARTIDO EN TODAS LAS PÁGINAS)
   ========================================================================== */
.pikabu-header-brand {
	text-align: center;
	margin-bottom: 25px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pikabu-logo-img {
	max-width: 280px;
	height: auto;
	display: inline-block;
	margin-bottom: 15px;
	filter: drop-shadow(0 8px 16px rgba(121, 86, 132, 0.22));
	transition: transform .3s ease;
}

.pikabu-logo-img:hover {
	transform: scale(1.03);
}

.pikabu-brand-text-container h1 {
	font-size: 2.2rem;
	color: #4a3852;
	margin: 5px 0;
	font-weight: 800;
}

.pikabu-brand-text-container p {
	font-size: 1rem;
	color: #795684;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0;
}

/* ==========================================================================
   MENÚ DE PÍLDORAS (BOTONES REDUCIDOS Y ELEGANTES)
   ========================================================================== */
.pikabu-smart-nav,
.pikabu-pills-nav,
.pikabu-new-header-nav {
	margin-bottom: 25px;
	width: 100%;
}

.pikabu-pills-container,
.pikabu-nav-links-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 12px;
	max-width: 950px;
	margin: 0 auto;
}

.pikabu-pill-btn,
.pikabu-nav-btn {
	background: linear-gradient(135deg, #8a6495 0%, #795684 100%);
	color: #ffffff !important;
	text-decoration: none;
	padding: 7px 16px !important;
	font-size: .85rem !important;
	font-weight: 700;
	border-radius: 20px !important;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.25);
	transition: all .3s ease;
	display: inline-flex;
	align-items: center;
	gap: 5px !important;
	border: 2px solid rgba(255, 255, 255, 0.2);
	white-space: nowrap;
}

.pikabu-pill-btn:hover, .pikabu-pill-btn.active,
.pikabu-nav-btn:hover, .pikabu-nav-btn.active {
	transform: translateY(-3px);
	box-shadow: 0 8px 22px rgba(121, 86, 132, 0.4);
	background: linear-gradient(135deg, #9973a4 0%, #8a6495 100%);
}

.pill-contact {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pill-contact:hover {
	background: linear-gradient(135deg, #2beb70 0%, #15a08f 100%);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS DE LA PÁGINA DE OPINIONES
   ========================================================================== */
.pikabu-opinions-vibrant {
	max-width: 1000px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.op-main-title {
	text-align: center;
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	padding: 30px 20px;
	border-radius: 20px;
	border: 2px solid #e2cfe6;
	box-shadow: 0 6px 20px rgba(121, 86, 132, 0.05);
}

.op-main-title h2 {
	font-size: 2.1rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 8px;
}

.op-main-title p {
	font-size: 1.02rem;
	color: #795684;
	font-weight: 600;
	margin: 0;
}

/* Tarjetas de Vídeo Intuitivas */
.op-videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.op-video-card {
	background: linear-gradient(135deg, #8a6495 0%, #795684 100%);
	border-radius: 18px;
	padding: 25px 20px;
	text-decoration: none;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 6px 18px rgba(121, 86, 132, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: transform .3s ease, box-shadow .3s ease;
}

.op-video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(121, 86, 132, 0.4);
	background: linear-gradient(135deg, #9973a4 0%, #8a6495 100%);
}

.op-play-icon {
	font-size: 1.5rem;
	background: #ffffff;
	color: #795684;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	padding-left: 3px;
}

.op-video-info h3 {
	font-size: 1.05rem;
	color: #ffffff;
	margin-bottom: 8px;
	font-weight: 700;
}

.op-video-info span {
	font-size: .82rem;
	color: #f0e6f3;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	background: rgba(0, 0, 0, 0.15);
	padding: 4px 10px;
	border-radius: 10px;
}

/* Insignia Google con Logo Real */
.op-google-badge {
	background: #ffffff;
	border: 2px solid #f0e6f3;
	border-radius: 18px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.05);
}

.op-google-stars {
	font-size: 1.5rem;
	color: #ffb400;
	letter-spacing: 2px;
	margin-bottom: 6px;
}

.op-google-text {
	font-size: .98rem;
	color: #4a3852;
}

.google-logo-word {
	font-weight: 800;
	font-family: Arial, sans-serif;
	letter-spacing: -.5px;
}

/* Carrusel de Reseñas */
.op-carousel-box {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 8px 25px rgba(121, 86, 132, 0.08);
	padding: 40px 35px;
	min-height: 250px;
	overflow: hidden;
}

.op-carousel-track {
	position: relative;
	width: 100%;
	min-height: 160px;
}

.op-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	box-sizing: border-box;
	padding: 0 15px;
	animation: fadeOpCarousel 40s infinite;
}

/* Sincronización para 8 diapositivas (5s cada una) */
.op-slide:nth-child(1) {
	animation-delay: 0;
}

.op-slide:nth-child(2) {
	animation-delay: 5s;
}

.op-slide:nth-child(3) {
	animation-delay: 10s;
}

.op-slide:nth-child(4) {
	animation-delay: 15s;
}

.op-slide:nth-child(5) {
	animation-delay: 20s;
}

.op-slide:nth-child(6) {
	animation-delay: 25s;
}

.op-slide:nth-child(7) {
	animation-delay: 30s;
}

.op-slide:nth-child(8) {
	animation-delay: 35s;
}

@keyframes fadeOpCarousel {
	0% {
		opacity: 0;
		visibility: hidden;
		transform: scale(0.98);
	}
	
	1% {
		opacity: 1;
		visibility: visible;
		transform: scale(1);
	}
	
	11% {
		opacity: 1;
		visibility: visible;
		transform: scale(1);
	}
	
	12.5% {
		opacity: 0;
		visibility: hidden;
		transform: scale(0.98);
	}
	
	100% {
		opacity: 0;
		visibility: hidden;
		transform: scale(0.98);
	}
}

.slide-stars {
	font-size: 1.2rem;
	color: #ffb400;
	margin-bottom: 12px;
}

.slide-text {
	font-size: 1.05rem;
	color: #4d5050;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 15px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.slide-author {
	font-size: .95rem;
	font-weight: 700;
	color: #795684;
	letter-spacing: .5px;
}

.op-carousel-hint {
	text-align: center;
	font-size: .82rem;
	color: #9c82a5;
	margin-top: 15px;
	font-weight: 600;
}

/* ==========================================================================
   REDES SOCIALES (COMPARTIDO)
   ========================================================================== */
.pikabu-social-section {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	margin-top: 40px;
	padding-top: 25px;
	border-top: 2px dashed #f0e6f3;
	width: 100%;
}

.pikabu-social-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: transform .3s;
}

.pikabu-social-item:hover {
	transform: scale(1.1);
}

.pikabu-social-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 5px 15px rgba(121, 86, 132, 0.2);
	margin-bottom: 6px;
	border: 2px solid #fff;
	color: #ffffff !important;
	font-size: 22px;
}

.circle-ig {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #df5950 45%, #a237b6 60%, #515ecf 90%);
}

.circle-fb {
	background-color: #1877f2;
}

.circle-mail {
	background-color: #795684;
}

.pikabu-social-item span {
	font-size: .85rem;
	font-weight: 600;
	color: #795684;
}

/* ==========================================================================
   ADAPTACIÓN MÓVIL (MENÚ DESLIZABLE TÁCTIL)
   ========================================================================== */
@media (max-width: 992px) {
	.pikabu-logo-img {
		max-width: 200px;
	}
	
	.pikabu-brand-text-container h1 {
		font-size: 1.5rem;
	}
	
	.pikabu-brand-text-container p {
		font-size: .85rem;
	}
	
	.pikabu-pills-container,
	    .pikabu-nav-links-container {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		justify-content: flex-start !important;
		gap: 10px !important;
		padding: 5px 15px 15px !important;
		width: 100% !important;
	}
	
	.pikabu-pills-container::-webkit-scrollbar,
	    .pikabu-nav-links-container::-webkit-scrollbar {
		display: none !important;
	}
	
	.pikabu-pill-btn,
	    .pikabu-nav-btn {
		padding: 8px 14px !important;
		font-size: .8rem !important;
		flex-shrink: 0 !important;
	}
	
	.op-videos-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.op-carousel-box {
		padding: 30px 15px;
		min-height: 260px;
	}
	
	.op-carousel-track {
		height: 190px;
	}
	
	.slide-text {
		font-size: .95rem;
	}
}

/* --- ESTILOS DINÁMICOS PARA SERVICIOS E INSTALACIONES --- */
.pikabu-services-vibrant {
	max-width: 1050px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.srv-main-title {
	text-align: center;
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	padding: 30px 20px;
	border-radius: 20px;
	border: 2px solid #e2cfe6;
	box-shadow: 0 6px 20px rgba(121, 86, 132, 0.05);
}

.srv-main-title h2 {
	font-size: 2.1rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 8px;
}

.srv-main-title p {
	font-size: 1.02rem;
	color: #795684;
	font-weight: 600;
	margin: 0;
}

/* Cuadrícula moderna de servicios (3 columnas) */
.srv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.srv-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 25px 20px;
	border: 2px solid #f0e6f3;
	box-shadow: 0 6px 18px rgba(121, 86, 132, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.srv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(121, 86, 132, 0.12);
	border-color: #d1b6dc;
}

.srv-icon {
	font-size: 2.3rem;
	background: #f7f1f9;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(121, 86, 132, 0.1);
	border: 2px solid #f0e6f3;
}

.srv-card h3 {
	font-size: 1.15rem;
	color: #4a3852;
	margin-bottom: 8px;
	font-weight: 700;
}

.srv-card p {
	font-size: .9rem;
	color: #5c3f66;
	line-height: 1.5;
	margin: 0;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 992px) {
	.srv-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.srv-main-title h2 {
		font-size: 1.7rem;
	}
}

/* --- ESTILOS PARA LOS ATRIBUTOS Y PREMIOS DE LA HOME --- */
.pikabu-trust-badges-container {
	max-width: 950px;
	margin: 0 auto 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.trust-badge-card {
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	border-radius: 20px;
	padding: 30px 25px;
	text-align: center;
	border: 2px solid #e2cfe6;
	box-shadow: 0 6px 20px rgba(121, 86, 132, 0.06);
	transition: transform .3s ease;
}

.trust-badge-card:hover {
	transform: translateY(-4px);
}

.trust-icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
}

.trust-badge-card h3 {
	font-size: 1.2rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 8px;
}

.trust-badge-card p {
	font-size: .95rem;
	color: #5c3f66;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 992px) {
	.pikabu-trust-badges-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}

/* --- ESTILOS MEJORADOS PARA LAS TARJETAS DE RECONOCIMIENTO --- */
.pikabu-trust-badges-container {
	max-width: 950px;
	margin: 0 auto 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.trust-badge-card {
	background: linear-gradient(135deg, #f7f1f9 0%, #f0e6f3 100%);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	border: 2px solid #e2cfe6;
	box-shadow: 0 6px 20px rgba(121, 86, 132, 0.06);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform .3s ease;
}

.trust-badge-card:hover {
	transform: translateY(-4px);
}

/* Estilo para la tarjeta con imagen real de Supervecinos */
.trust-image-wrapper {
	width: 100%;
	height: 160px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 2px solid #ffffff;
}

.trust-real-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.trust-card-text h3, .trust-badge-card h3 {
	font-size: 1.2rem;
	color: #4a3852;
	font-weight: 800;
	margin-bottom: 8px;
}

.trust-card-text p, .trust-badge-card p {
	font-size: .95rem;
	color: #5c3f66;
	line-height: 1.5;
	margin: 0;
}

/* Cabecera de Google con su logo de colores y estrella */
.trust-google-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 12px;
}

.trust-star-big {
	font-size: 1.8rem;
}

.trust-google-title {
	font-size: 1.6rem;
	font-weight: 800;
	font-family: Arial, sans-serif;
	letter-spacing: -.5px;
}

@media (max-width: 992px) {
	.pikabu-trust-badges-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}

/* --- ESTILO PARA LAS 5 ESTRELLAS Y GOOGLE EN LA HOME --- */
.trust-google-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-bottom: 12px;
}

.trust-stars-row {
	font-size: 1.5rem;
	color: #ffb400;
	letter-spacing: 2px;
}

.trust-google-title {
	font-size: 1.6rem;
	font-weight: 800;
	font-family: Arial, sans-serif;
	letter-spacing: -.5px;
}

/* --- ESTILOS PARA EL CARRUSEL DE MENÚS MENSUALES --- */
.pikabu-menu-page-container {
	max-width: 850px;
	margin: 0 auto 40px;
	background: #ffffff;
	padding: 35px;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(121, 86, 132, 0.1);
	border: 2px solid #f0e6f3;
}

.pikabu-menu-hero {
	text-align: center;
	margin-bottom: 30px;
}

.menu-icon-badge {
	font-size: 2.8rem;
	margin-bottom: 12px;
	background: #f0e6f3;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 4px 15px rgba(121, 86, 132, 0.15);
}

.pikabu-menu-hero h2 {
	font-size: 2rem;
	color: #4a3852;
	margin-bottom: 10px;
	font-weight: 700;
}

.pikabu-menu-hero p {
	font-size: 1.05rem;
	color: #795684;
	font-weight: 600;
	margin: 0;
}

/* Contenedor del Carrusel Táctil de Meses */
.pikabu-month-carousel-wrapper {
	position: relative;
	width: 100%;
}

.pikabu-month-track {
	display: flex;
	overflow-x: auto;
	gap: 20px;
	padding-bottom: 15px;
}

.pikabu-month-track::-webkit-scrollbar {
	height: 8px;
}

.pikabu-month-track::-webkit-scrollbar-track {
	background: #f0e6f3;
	border-radius: 10px;
}

.pikabu-month-track::-webkit-scrollbar-thumb {
	background: #795684;
	border-radius: 10px;
}

/* Tarjeta individual grande de cada mes */
.month-slide-card {
	min-width: 100%;
	scroll-snap-align: center;
	background: #fdfbfe;
	border: 3px solid #f0e6f3;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(121, 86, 132, 0.12);
	box-sizing: border-box;
}

.month-header-large {
	background: linear-gradient(135deg, #8a6495 0%, #795684 100%);
	color: #ffffff;
	padding: 18px 20px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: .5px;
}

.month-body-large {
	padding: 50px 30px;
	text-align: center;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.status-badge-large {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: 1.05rem;
	font-weight: 600;
	background-color: #f5edf7;
	color: #795684;
	border: 2px dashed #795684;
}

.carousel-swipe-hint {
	text-align: center;
	font-size: .9rem;
	color: #9c82a5;
	margin-top: 15px;
	font-weight: 600;
}

.pikabu-menu-info-box {
	background: #fdfbfe;
	border-left: 5px solid #795684;
	padding: 20px 25px;
	border-radius: 14px;
	border: 2px solid #f0e6f3;
	border-left-width: 5px;
}

.pikabu-menu-info-box h4 {
	font-size: 1.05rem;
	color: #4a3852;
	margin-bottom: 8px;
	font-weight: 700;
}

.pikabu-menu-info-box p {
	font-size: .92rem;
	color: #5c3f66;
	line-height: 1.5;
	margin: 0;
}

.pikabu-menu-info-box a {
	color: #795684;
	font-weight: 700;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.pikabu-menu-page-container {
		padding: 20px 15px;
	}
	
	.pikabu-menu-hero h2 {
		font-size: 1.5rem;
	}
	
	.month-body-large {
		padding: 35px 15px;
		min-height: 150px;
	}
	
	.status-badge-large {
		font-size: .9rem;
		padding: 10px 18px;
	}
}