/*
Theme Name: Inpweb Framework
Theme URI: https://solucionesdigitalesinpweb.com/
Author: Soluciones Digitales Inpweb
Description: Framework profesional, ligero y optimizado para marketing y Elementor.
Version: 1.4.0
Text Domain: inpweb-framework
*/

/* 1. RESET Y BASES */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #f8fafc; color: #1e293b; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }

/* 2. CABECERA (LOGO IZQUIERDA - MENÚ DERECHA) */
.site-header { width: 100%; position: sticky; top: 0; z-index: 9999; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; }

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.header-right { display: flex; align-items: center; gap: 30px; }

/* 3. MENÚ DE NAVEGACIÓN (LIMPIO SIN PUNTOS) */
.nav-menu {
    display: flex;
    list-style: none !important; /* ELIMINA VIÑETAS */
    margin: 0 !important;
    padding: 0 !important;
    gap: 25px;
}

.nav-menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; }

.nav-menu a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.nav-menu a:hover { color: var(--p-color) !important; opacity: 0.8; }

/* 4. SECCIÓN HERO */
.hero-section {
    padding: 140px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero-content { max-width: 850px; margin: 0 auto; z-index: 2; position: relative; }
.hero-content h1 { font-size: clamp(32px, 6vw, 64px); font-weight: 900; margin: 0 0 20px 0; line-height: 1.1; }
.hero-content p { font-size: 20px; opacity: 0.9; margin-bottom: 35px; }

.hero-btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,0,0,0.3); }

/* 5. CONTENIDOS */
.site-content { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
article { background: #fff; border-radius: 15px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }