/* CSS Fallback para problemas de carga de estilos externos */

/* Reset crítico para evitar problemas cross-browser */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Variables de color básicas como fallback */
body {
    --primary-color: #233d34;
    --secondary-color: #4C685E;
    --accent-color: #BAB495;
    --text-primary: #1a1a1a;
    --white: #ffffff;
}

/* Header básico sin backdrop-filter para compatibilidad */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Contenedor con límites estrictos */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Hero section básico */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #233d34 0%, #4C685E 100%);
    color: white;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
}

/* Responsive básico */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem 0.5rem;
    }
    
    /* Forzar elementos a no exceder viewport */
    * {
        max-width: 100vw !important;
    }
    
    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
}
