/* ======== VARIABLES & GLOBAL ======== */
:root {
    --palm-dark: #F77A3D;
    --palm-primary: #F77A3D;
    --palm-accent: #b88317;
    --palm-light: #e8f5e9;
    --bg-soft: #f9fbfd;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow-md: 0 10px 25px rgba(0, 60, 30, 0.08);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

body { font-family: var(--font-body); color: var(--text-dark); background-color: var(--white); overflow-x: hidden; line-height: 1.6; font-size: 0.95rem; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; color: var(--palm-dark); }
.mw-800 { max-width: 800px; }

/* GLOBALES */
.line-gold { width: 60px; height: 3px; background: var(--palm-accent); border-radius: 2px; }
.section-subtitle { display: block; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; color: var(--palm-accent); font-weight: 600; margin-bottom: 10px; }
.section-title { font-size: 2rem; color: var(--palm-dark); font-weight: 800; }

/* ======== HERO SECTION COMPACTO ======== */
.hero-inn-modern {
    padding: 60px 0 40px; /* Reducido drásticamente */
    background: radial-gradient(circle at center top, #f3f8f4, #ffffff 70%);
    position: relative;
    overflow: hidden;
}
.hero-inn-modern::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: radial-gradient(var(--palm-light) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.3; pointer-events: none;
}
.badge-inn-modern { 
    background-color: var(--palm-primary); color: var(--white); padding: 6px 18px; border-radius: 50px; 
    text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.7rem; font-weight: 600; display: inline-block;
}
.hero-inn-modern h1 { font-weight: 900; color: var(--text-dark); letter-spacing: -1px; margin-bottom: 0; }
.lead-inn-modern { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; font-weight: 400; }

/* ======== INTRODUCCIÓN COMPACTA ======== */
.innovacion-intro { padding: 40px 0; }
.text-desc { font-size: 1rem; color: #555; margin-bottom: 15px; }
.img-frame-inn img { border-radius: 15px; width: 100%; max-height: 350px; object-fit: cover; }

/* ======== NUEVA SECCIÓN ESTRATEGIA COMPACTA ======== */
.strategy-section {
    padding: 40px 0 50px;
    background-color: var(--bg-soft);
}
.strategy-card {
    background: #fff;
    padding: 35px 30px; /* Menos relleno */
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--palm-primary);
}
.icon-strategy { font-size: 2rem; color: var(--palm-accent); }

.strategy-list { list-style: none; padding: 0; margin: 0; }
.strategy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px; /* Menos espacio entre items */
    font-size: 0.95rem;
    color: var(--text-dark);
}
.strategy-list li i {
    font-size: 1.1rem;
    margin-right: 12px;
    color: var(--palm-primary) !important;
    margin-top: 2px; 
}
.strategy-list li:last-child { margin-bottom: 0; }

/* ======== 10 MANDAMIENTOS (ESTILO BARRAS FINAS) ======== */
.mandamientos-bar-section {
    padding: 50px 0;
    background: #fffdf5;
}

.mandamientos-container {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Barras más pegadas */
}

.mandamiento-bar {
    display: flex;
    align-items: stretch; 
    color: white;
    font-family: var(--font-body); 
    font-weight: 600; 
    font-size: 1rem; /* Letra más pequeña */
    transition: transform 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border-radius: 4px; /* Bordes ligeramente redondeados */
    overflow: hidden;
}

.mandamiento-bar:hover {
    transform: translateX(5px); 
}

/* Caja del número (Izquierda) */
.m-num-box {
    width: 50px; /* Más angosto */
    background-color: rgba(0, 0, 0, 0.2); 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem; /* Número más pequeño */
    font-weight: 700;
    padding: 8px 0; /* Menos alto */
}

/* Caja del texto (Derecha) */
.m-text-box {
    flex-grow: 1;
    padding: 8px 20px; /* Menos alto */
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 1.2;
}

/* ======== SECCIÓN FINAL ======== */
.final-section { background: #fff; }
.logo-inn { height: 60px; opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.7rem; }
    .hero-inn-modern { padding: 50px 0 30px; }
    .strategy-card { padding: 25px 20px; }
    .mandamiento-bar { font-size: 0.9rem; }
    .m-num-box { width: 40px; font-size: 1.1rem; }
}