/* Responsive - Mobile First con 4 breakpoints estándar */

/* 1. Base - Mobile (0px+) - Estilos por defecto en styles.css y components.css */

/* Tipografía responsive - mobile */
.section-title {
	font-size: var(--font-size-xl); /* 1.4rem para móviles */
}

.subtitle-large {
	font-size: var(--font-size-xl); /* 1.4rem para móviles */
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Encuesta - mobile (base) */
#mobile-survey-btn {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}
#survey-iframe {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}
#survey-container {
	background: none !important;
	box-shadow: none !important;
	height: auto !important;
}

/* 2. Tablet (768px+) */
@media (min-width: 768px) {
	/* Tipografía responsive - tablet */
	.section-title {
		font-size: var(--font-size-xxl); /* 2rem para tablet */
	}
	
	.subtitle-large {
		font-size: var(--font-size-xxl); /* 2rem para tablet */
		line-height: 1.4;
	}
	
	/* Logo responsive - tablet y desktop */
	.logo {
		flex-direction: row;
		justify-content: center;
		margin-bottom: 30px;
	}
	.logo__image {
		height: 120px;
		margin-right: 20px;
		margin-bottom: 0;
	}
	.logo__text {
		font-size: 8rem;
		text-align: left;
	}
	
	/* Grid responsive */
	.benefits {
		grid-template-columns: 1fr 1fr;
	}
	
	/* Main content */
	.main-content {
		padding: 20px;
	}
	
	/* Footer */
	footer p {
		font-size: 1rem;
	}
	
	/* Encuesta - desktop */
	#mobile-survey-btn {
		display: none !important;
	}
	#survey-iframe {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		width: 100% !important;
		height: 1200px !important;
	}
	#survey-container {
		background: white !important;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
		overflow: hidden !important;
		height: 1200px !important;
	}
}

/* 3. Desktop (1024px+) */
@media (min-width: 1024px) {
	/* Grid para desktop */
	.benefits {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	/* Container 80% del ancho en desktop */
	.container {
		width: 80%;
		max-width: none;
	}
}

/* 4. Large Desktop (1440px+) */
@media (min-width: 1440px) {
	/* Container mantiene 80% en pantallas grandes */
	.container {
		width: 80%;
		max-width: none;
	}
	
	/* Tipografía más grande */
	.section-title {
		font-size: 2.2rem;
	}
	
	.subtitle-large {
		font-size: 2.2rem;
		line-height: 1.5;
	}
}