/*
	Theme Name: mdesigner-elementor-child
	Description: Child theme optimizado de Hello Elementor para máxima velocidad con Elementor. Elimina elementos innecesarios y optimiza el rendimiento.
	Author: mdesigner.co
	Author URI: https://mdesigner.co
	Theme URI: https://mdesigner.co
	Template: hello-elementor
	Version: 1.0.0
	Tested up to: 6.4
	Requires PHP: 7.4
	License: GNU General Public License v3 or later
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: mdesigner-elementor-child
	Tags: elementor, performance, optimization, child-theme, responsive, custom-header, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
	
	Copyright (c) 2024 mdesigner.co
	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 3 of the License, or
	(at your option) any later version.
	
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.
*/

/* 
 * ESTILOS MÍNIMOS - Solo lo esencial
 * El resto se maneja con Elementor
 */

/* Reset básico personalizado - más ligero que el original */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
}

/* Ocultar elementos innecesarios cuando se usa Elementor */
.elementor-page .site-header,
.elementor-page .site-footer {
	display: none;
}

/* Optimización para Elementor */
.elementor {
	width: 100%;
}

/* Mejoras de accesibilidad */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Optimización para móviles */
@media (max-width: 768px) {
	body {
		font-size: 16px; /* Evita zoom en iOS */
	}
} 