/* Fuente base y reset mínimo */
/* Desarrollado por: JOSE LUIS NÚÑEZ-MELGAR VEGA | Tel: 920610028 */
* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	color: #0e335f;
	background: white;
}

/* Header sticky ocultable */

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	transform: translateY(0);
	transition: transform 260ms ease, padding-top 300ms ease;
	padding-top: 40px;
	padding-bottom: 20px;
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
}

.brand {
	text-decoration: none;
	margin-left: clamp(0px, calc((100vw - 769px) * 80 / (1920 - 769)), 80px);
}

.brand img {
	height: 53px;
	display: block;
}

.header-nav {
	display: flex;
	align-items: center;
	margin-right: clamp(0px, calc((100vw - 769px) * 80 / (1920 - 769)), 80px);
}

/* Menú desktop */
.desktop-nav {
	background: white;
	border-radius: 25px;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	gap: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
	color: #333;
	text-decoration: none;
	padding: 10px 46px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: #0055a5;
}

.nav-btn {
	background: #0055a5;
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	transition: background 0.2s ease;
}

.nav-btn:hover {
	background: #003d7a;
}

/* Botón hamburguesa */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 3px;
	background: #0055a5;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
	background: #003d7a;
}

/* Menú móvil pantalla completa */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: white;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	overflow: hidden;
	display: none;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
	display: block;
}

.mobile-menu {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 20px;
	position: relative;
	z-index: 10001;
}

.mobile-menu-header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 40px;
}

.mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	position: relative;
	width: 32px;
	height: 32px;
	z-index: 10000;
}

.mobile-menu-close span {
	position: absolute;
	width: 24px;
	height: 3px;
	background: #0055a5;
	border-radius: 2px;
	top: 50%;
	left: 50%;
}

.mobile-menu-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	background: white;
	position: relative;
	z-index: 10002;
}

.mobile-nav-link {
	color: #333;
	text-decoration: none;
	font-size: 24px;
	font-weight: 500;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	transition: color 0.2s ease;
}

.mobile-nav-link:hover {
	color: #0055a5;
}

.mobile-nav-btn {
	background: #0055a5;
	color: white;
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 30px;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	transition: background 0.2s ease;
}

.mobile-nav-btn:hover {
	background: #003d7a;
}

.mobile-menu-footer {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}

.mobile-logo {
	height: 60px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
	.desktop-nav {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
}

/* Asegurar que el menú móvil ocupe el ancho total en pantallas muy pequeñas */
@media (max-width: 320px) {
	.mobile-menu-overlay {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		background: white !important;
		z-index: 99999 !important;
		transform: none !important;
		overflow: hidden !important;
	}
	
	.mobile-menu {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		padding: 15px !important;
		background: white !important;
		transform: none !important;
		z-index: 100000 !important;
		display: flex !important;
		flex-direction: column !important;
	}
	
	.mobile-menu-content {
		width: 100% !important;
		padding: 0 10px !important;
		background: white !important;
		transform: none !important;
		flex: 1 !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 30px !important;
	}
	
	.mobile-nav-link,
	.mobile-nav-btn {
		width: 100% !important;
		max-width: 100% !important;
		text-align: center !important;
		padding: 15px 20px !important;
		font-size: 16px !important;
		transform: none !important;
	}
}

/* Botón Volver estilo cápsula con borde y sombra sutil */
.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.9);
	border-radius: 10px;
	padding: 6px 14px;
	text-decoration: none;
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 0.3px;
	box-shadow: 0 1px 0 rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
	background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
}
.back-btn .icon { display: block; }
.back-btn:hover { background: rgba(255,255,255,0.10); }
.back-btn:active { transform: translateY(1px); }
.brand img { height: 53px; display: block; }


.page {
	min-height: auto;
	padding-bottom: 0;
}

.note {
	margin: 24px auto 18px auto;
	max-width: 980px;
	text-align: center;
	font-size: 22px;
	color: #dce9fb;
	font-weight: 700;
}

/* Validation Section */
.validation-section {
	padding: 40px 0;
	position: relative;
	overflow: hidden;
}

.validation-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.validation-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid #e1e8ed;
}

.validation-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.yape-card {
	background: white;
	border: 2px solid #e1e8ed;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.yape-header {
	position: relative;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 20px;
}

.yape-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/yape.png');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
}

.yape-text {
	position: relative;
	z-index: 2;
	color: white;
	font-size: 18px;
	font-weight: 600;
	text-align: right;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.yape-content {
	background: #f8f9fa;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}

.coupon-card {
	background: white;
	border: 2px solid #e1e8ed;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.coupon-header {
	position: relative;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 20px;
}

.coupon-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../images/cupon.png');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
}

.coupon-text {
	position: relative;
	z-index: 2;
	color: white;
	font-size: 18px;
	font-weight: 600;
	text-align: right;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coupon-content {
	background: #f8f9fa;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}

.validation-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.validation-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.yape-icon {
	background: white;
	color: #8e44ad;
}

.coupon-icon {
	background: #3498db;
	color: white;
}

.validation-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: inherit;
	line-height: 1.3;
}

.validation-input-group {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
}

.validation-input {
	flex: 1;
	min-width: 120px;
	padding: 15px 20px;
	border: 2px solid #e1e8ed;
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: #f8f9fa;
}

.validation-input:focus {
	outline: none;
	border-color: #3498db;
	background: white;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.validation-btn {
	padding: 15px 20px;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 100px;
	flex-shrink: 0;
}

.yape-btn {
	background: #ffcc01;
	color: #333;
}

.yape-btn:hover {
	background: #e6b800;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 204, 1, 0.4);
}

.coupon-btn {
	background: #ffcc01;
	color: #333;
}

.coupon-btn:hover {
	background: #e6b800;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 204, 1, 0.4);
}

/* Modal de Inicio de Sesión */
.login-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: none;
}

.login-modal.active {
	opacity: 1;
	visibility: visible;
	display: flex;
}

.login-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
}

.login-modal-content {
	position: relative;
	background: white;
	border-radius: 20px;
	width: 90%;
	max-width: 450px;
	margin: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.login-modal.active .login-modal-content {
	transform: scale(1);
}

.login-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 30px 20px 30px;
	border-bottom: 1px solid #e1e8ed;
}

.login-header h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #333;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.login-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	width: 32px;
	height: 32px;
	position: relative;
}

.login-close span {
	position: absolute;
	width: 20px;
	height: 2px;
	background: #666;
	border-radius: 1px;
	top: 50%;
	left: 50%;
}

.login-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.login-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.login-form {
	padding: 30px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 14px;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.form-group input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e1e8ed;
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus {
	outline: none;
	border-color: #0055a5;
	box-shadow: 0 0 0 3px rgba(0, 85, 165, 0.1);
}

.login-submit {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #0055a5 0%, #003d7a 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.login-submit:hover {
	background: linear-gradient(135deg, #003d7a 0%, #002a5c 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 85, 165, 0.3);
}

.login-submit:active {
	transform: translateY(0);
}

/* Responsive para modal */
@media (max-width: 768px) {
	.login-modal-content {
		width: 95%;
		margin: 20px auto;
	}
	
	.login-header {
		padding: 25px 20px 15px 20px;
	}
	
	.login-header h2 {
		font-size: 20px;
	}
	
	.login-form {
		padding: 25px 20px;
	}
	
	.form-group input {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.login-submit {
		padding: 15px;
		font-size: 14px;
	}
}

/* Responsive para validación */
@media (max-width: 768px) {
	.validation-container {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 15px;
	}
	
	
	.validation-input-group {
		flex-direction: row;
		gap: 15px;
	}
	
	.validation-btn {
		width: auto;
	}
	
	.validation-header h3 {
		font-size: 16px;
	}
}

/* Subscription Plans */
.subscription-plans {
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

/* Animaciones para transición de planes */
.plans-cards {
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plans-cards.fade-out {
	opacity: 0;
	filter: blur(10px);
	transform: scale(0.9) translateY(20px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.subplans-container {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.subplans-container.show {
	opacity: 1;
	transform: translateY(0);
}

/* Estilos para subplanes */
.subplan-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	gap: 0;
	background: #ffffff;
	border: 1px solid #e8f4fd;
	border-radius: 25px;
	padding: 6px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 6px 20px rgba(0,85,165,0.12);
}

.subplan-tab {
	padding: 10px 20px;
	border: none;
	background: transparent;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 600;
	color: #0055a5;
	transition: all 0.3s ease;
	font-size: 14px;
	min-width: 80px;
}

.subplan-tab.active {
	background: #d3f3ff;
	color: #0055a5;
	box-shadow: 0 2px 8px rgba(0, 85, 165, 0.2);
}

.subplan-tab:hover:not(.active) {
	color: #0055a5;
}

/* Flecha de regreso dentro del contenedor de tabs */
.back-arrow {
	border: none;
	background: transparent;
	color: #0055a5;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 16px;
	margin-right: 6px;
	transition: all 0.2s ease;
}
.back-arrow:hover {
	background: #d2f2fd;
}

.subplan-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.subplan-card {
	background: white;
	border: 1px solid #e8f4fd;
	border-radius: 12px;
	padding: 20px 15px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.subplan-card:hover {
	border-color: #0055a5;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 85, 165, 0.15);
}

.subplan-card.recommended {
	border-color: #ff6b9d;
	box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.subplan-card .via-icon {
	width: 35px;
	height: 35px;
	margin: 0 auto 12px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	overflow: hidden;
}

.subplan-card .via-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.subplan-card .via-correo .via-icon,
.subplan-card .via-whatsapp .via-icon {
	background: #0055a5;
	color: #ffffff;
}

.subplan-card h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

/* Precio con formato S/ + cantidad */
.subplan-card .price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	color: #0055a5;
	margin-bottom: 12px;
}

.subplan-card .price .currency {
	font-size: 16px;
	font-weight: 700;
}

.subplan-card .price .amount {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}

/* Precio anterior arriba, pequeño y tachado */
.subplan-card .old-price {
	display: block;
	text-align: center;
	font-size: 12px;
	color: #9aa7b6;
	text-decoration: line-through;
	margin-bottom: 6px;
}

.back-btn {
	background: #f8f9fa;
	border: 2px solid #e1e8ed;
	color: #666;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.back-btn:hover {
	background: #e9ecef;
	border-color: #adb5bd;
}

/* Botón de suscripción en subplanes */
.subplan-card .btn-suscribirse {
	background: #ff6b9d !important;
	border: none !important;
	padding: 10px 20px !important;
	border-radius: 20px !important;
	font-weight: bold !important;
	width: 100% !important;
	color: white !important;
	font-size: 14px !important;
	transition: all 0.3s ease !important;
}

.subplan-card .btn-suscribirse:hover {
	background: #ff5a8a !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4) !important;
}

.subscription-plans::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>') repeat;
	opacity: 0.3;
}

.plans-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: start;
	position: relative;
	z-index: 1;
}

.plans-left {
	background: #d2f2fd;
	border-radius: 20px;
	padding: 40px 30px 120px 30px;
	text-align: left;
	border: 2px solid #e6f3ff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 620px;
}

.plans-icon {
	width: 60px;
	height: 60px;
	background: #0055a5;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 100px 0;
	padding: 10px;
}

.plans-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.plans-left h2 {
	color: #0055a5;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 15px 0;
	line-height: 1.2;
	text-align: left;
}

.plans-left h2 span {
	font-weight: 900;
}

.plans-left p {
	color: #0055a5;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	text-align: left;
}

.plans-right {
	padding: 40px 30px;
}

.plans-right h2 {
	text-align: center;
	color: black;
	font-size: 35px;
	font-weight: 400;
	margin: -24px 0 43px 0;
}

.plans-right h2 span {
	color: black;
	font-weight: 900;
}

.plans-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.plan-card {
	background: white;
	border: 2px solid #e6f3ff;
	border-radius: 16px;
	padding: 25px;
	position: relative;
	transition: all 0.3s ease;
}

.plan-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 85, 165, 0.15);
}

.plan-card.recommended {
	border-color: #0055a5;
	box-shadow: 0 5px 20px rgba(0, 85, 165, 0.1);
}

.recommended-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #0055a5;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.plan-card h3 {
	color: #0055a5;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

.plan-price {
	margin-bottom: 20px;
}

.current-price {
	color: #0055a5;
	font-size: 36px;
	font-weight: 700;
	margin-right: 10px;
}

.old-price {
	color: #999;
	font-size: 18px;
	text-decoration: line-through;
}

.plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.plan-features li {
	color: #0055a5;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
	padding-left: 5px;
}

.plan-btn {
	width: 100%;
	background: #FF2776;
	color: white;
	border: none;
	border-radius: 25px;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-btn:hover {
	background: #ff69b4;
	transform: translateY(-2px);
}

.plans-footer {
	color: #999;
	font-size: 14px;
	text-align: center;
	margin: 0;
}

/* Responsive para planes */
@media (max-width: 768px) {
	.plans-container {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 15px;
	}
	
	.plans-left {
		padding: 30px 20px;
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
		min-height: 200px;
	}
	
	.plans-left .plans-icon {
		margin: 0;
		flex-shrink: 0;
	}
	
	.plans-left .plans-content {
		flex: 1;
	}
	
	.plans-right {
		padding: 30px 20px;
	}
	
	.plans-cards {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.plans-left h2 {
		font-size: 28px;
	}
	
	.plans-right h2 {
		font-size: 28px;
	}
	
	.current-price {
		font-size: 28px;
	}
}

.help {
	display: flex;
	justify-content: center;
	margin: 0 16px;
}

.help-card {
	background: #ffffff;
	border-radius: 24px;
	max-width: 900px;
	width: 100%;
	padding: 28px 32px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.help-card h2 {
	margin: 0 0 6px 0;
	font-weight: 900;
	color: #0e335f;
}

.help-card p {
	margin: 4px 0;
	color: #5b6f89;
}

.benefits {
	margin-top: 36px;
	margin-bottom: 50px;
}

.help-card {
	background: #0055a5;
	border-radius: 16px;
	padding: 24px;
	margin: 80px auto 40px auto;
	width: 70%;
	box-shadow: 0 8px 25px rgba(0, 85, 165, 0.3);
}

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

.help-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.help-icon {
	font-size: 32px;
	flex-shrink: 0;
}

.help-left h2 {
	color: white;
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.help-right p {
	color: white;
	font-size: 13px;
	margin: 0;
	line-height: 1.4;
	text-align: left;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.benefits .title {
	text-align: center;
	color: black;
	font-size: 35px;
	font-weight: 400;
	margin: 10px 0 22px 0;
}

.benefits .title span {
	color: black;
	font-weight: 900;
}

.cards {
	max-width: 873px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	padding: 0 16px;
}

.card {
	background: transparent !important;
	border-radius: 24px;
	text-align: center;
	padding: 20px 12px 16px 12px;
	box-shadow: none !important;
	transition: transform 220ms ease;
	overflow: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.card img {
	width: 120px;
	height: 120px;
	display: block;
	margin: 0 auto 10px auto;
}

.card h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.25;
	color: black !important;
}

.benefits .card h3 {
	color: black !important;
}

.card.is-active {
	transform: translateY(-2px);
	box-shadow: none !important;
}

.cta {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.btn {
	background: #ffcc01;
	color: #0e335f;
	border: none;
	padding: 16px 28px;
	border-radius: 28px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* Dots del slider ocultos por defecto (solo se muestran en móvil) */
.slider-dots { display: none; }

/* Footer */
.site-footer {
	background: #d2f2fd;
	color: black;
	border-radius: 20px 20px 0 0;
}


.footer-top {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 6fr 3fr 3fr;
	gap: 36px;
	padding: 43px 7px 38px 48px;
}

.footer-logo {
	height: 42px;
	display: block;
	margin-top: 16px;
	margin-bottom: 18px;
}

.footer-col p,
.footer-col li {
	color: black;
	font-size: 12px;
}

.footer-col h4 {
	margin: 0 0 20px 0;
	font-size: 17px;
	font-weight: 900;
	color: black;
}

/* Separadores bajo títulos en Contacto y Legales */
.footer-col.contact h4,
.footer-col.legal h4 {
	position: relative;
	padding-bottom: 0;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col ul li + li {
	margin-top: 10px;
}

.footer-col a {
	text-decoration: none;
	color: #6B7280;
}

.footer-col a:hover {
	text-decoration: underline;
}

.mail { color: #6B7280; text-decoration: none; display: block; }
.mail:hover { text-decoration: underline; }

.phone { color: #6B7280; margin-top: 12px; display: block; }

.footer-divider {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	max-width: 935px;
	margin: 0 auto 0 auto;
}

.footer-bottom {
	max-width: 935px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0px 16px 0px;
}

.copyright { font-size: 14px; color: #0055a5; }

.social { display: flex; gap: 18px; }
.social-link { color: #0055a5; display: inline-flex; }
.social-link:hover { color: #003d7a; }

/* Responsivo */
@media (max-width: 1200px) {
	.cards {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
		max-width: 800px;
	}
	.card {
		flex: 0 0 240px;
		max-width: 240px;
	}
}

@media (max-width: 680px) {
	/* Ocultar texto específico en móvil */
	.mobile-hide { display: none; }
	.benefits .title {
		font-size: 36px;
	}
	/* Slider móvil */
	.cards {
		display: flex;
		gap: 6px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 0 16px;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		scrollbar-width: none;
		-ms-overflow-style: none;
		cursor: grab;
		scroll-behavior: smooth;
		flex-wrap: nowrap;
		justify-content: flex-start;
		max-width: none;
	}
	.cards::-webkit-scrollbar { display: none; }
	.card {
		flex: 0 0 82%;
		scroll-snap-align: center;
		scroll-snap-stop: always;
	}
	.cards.is-dragging { cursor: grabbing; }

	/* Dots navegación */
	.slider-dots {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 8px;
	}
	.slider-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: rgb(163 160 160 / 45%);
		border: none;
		padding: 0;
		cursor: pointer;
		transition: background 200ms ease, transform 200ms ease, opacity 200ms ease;
	}
	.slider-dot.is-active { background: #F7CC46; transform: scale(1.4); }
	.card img {
		width: 120px;
		height: 120px;
	}
	
	.help-content {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.help-left {
		flex-direction: column;
		gap: 10px;
	}
	
	.help-left h2 {
		font-size: 20px;
	}
	
	.help-right p {
		font-size: 14px;
		text-align: center;
	}
	.footer-top {
		grid-template-columns: 1fr;
		gap: 18px;
		padding-top: 20px;
		text-align: center;
	}
	.footer-logo { margin-left: auto; margin-right: auto; }
	.footer-col.about p { text-align: center; }
	.footer-col.contact, .footer-col.legal { text-align: center; }
	.footer-col ul { display: inline-block; text-align: left; }
	.footer-bottom {
		flex-direction: column;
		gap: 10px;
		align-items: center;
		text-align: center;
	}
}

@media (max-width: 420px) {
	.cards { display: flex; }
}

/* Responsive ajustes para la interna de “Elige tu plan” */
@media (max-width: 480px) {
	.subplan-tabs {
		max-width: calc(100% - 24px);
		margin-left: 12px;
		margin-right: 12px;
		padding: 4px;
	}
	.subplan-tab {
		padding: 8px 14px;
		font-size: 13px;
		min-width: auto;
		border-radius: 18px;
	}
	.back-arrow {
		font-size: 16px;
		padding: 4px 8px;
	}
	.subplans-container {
		padding: 0 12px;
	}
	.subplan-options {
		grid-template-columns: 1fr;
		max-width: 100%;
		gap: 12px;
	}
	.subplan-card {
		padding: 16px 12px;
	}
	.subplan-card h4 { font-size: 13px; }
	.subplan-card .price .currency { font-size: 14px; }
	.subplan-card .price .amount { font-size: 26px; }
}

@media (max-width: 360px) {
	.subplan-tab { padding: 6px 10px; font-size: 12px; }
	.back-arrow { font-size: 14px; padding: 3px 6px; }
	.subplan-card .price .amount { font-size: 24px; }
}

/* Ajustes finos exactamente para <=404px */
@media (max-width: 404px) {
	.subplan-tabs { padding: 3px; border-radius: 20px; }
	.subplan-tab { padding: 6px 12px; font-size: 12px; }
	.back-arrow { font-size: 14px; padding: 3px 6px; margin-right: 4px; }
	.subplan-options { gap: 10px; }
	.subplan-card { padding: 14px 10px; }
	.subplan-card .price .currency { font-size: 13px; }
	.subplan-card .price .amount { font-size: 24px; }
}


