:root {
    --naranja: #F7941D;
    --gris: #333;
    --gris-claro: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gris-claro);
    color: var(--gris);
}

section {
    padding: 90px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* =========================
   INDICADORES (AGREGADO)
========================= */

.kpis {
    background: white;
}

.kpis h2 {
    margin-bottom: 50px;
    font-size: 32px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kpi-box {
    background: var(--gris-claro);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border-top: 5px solid var(--naranja);
}

.kpi-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.counter {
    font-size: 42px;
    font-weight: 700;
    color: var(--naranja);
    margin-bottom: 10px;
}

.kpi-box p {
    font-weight: 600;
    color: var(--gris);
}

/* =========================
   HEADER
========================= */

header {
    position: fixed;
    width: 100%;
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gris);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--naranja);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gris);
    margin: 4px 0;
}

/* =========================
   HERO
========================= */

.hero {
    height: 100vh;
    background: linear-gradient(to right, #ffffff, #fff3e8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero span {
    color: var(--naranja);
}

.btn {
    margin-top: 25px;
    padding: 12px 28px;
    background: var(--naranja);
    color: white;
    border-radius: 30px;
    text-decoration: none;
}

/* =========================
   EMPRESA
========================= */

.empresa-card {
    background: white;
    padding: 25px;
    border-left: 6px solid var(--naranja);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 25px 0;
}

.empresa-subtitle {
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 5px solid var(--naranja);
    padding-left: 12px;
}

.actividad-grid,
.valores-grid,
.experiencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.actividad-item,
.valor-item,
.exp-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

.valor-item {
    text-align: center;
    font-weight: 600;
    border-top: 4px solid var(--naranja);
}

.valor-item:hover {
    background: var(--naranja);
    color: white;
    transform: scale(1.05);
}

.exp-card:hover,
.actividad-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mision-vision {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.mv-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* =========================
   OFERTA
========================= */

.section-title {
    background: var(--naranja);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 25px;
}

.dual-section {
    display: flex;
    gap: 40px;
}

.column {
    flex: 1;
}

.accordion-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 15px;
    cursor: pointer;
    background: #eee;
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    padding: 0 20px;
}

.accordion-content ul {
    padding: 15px 0;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

/* =========================
   ANIMACION SCROLL
========================= */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CONTACTO
========================= */

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form button {
    background: var(--naranja);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px) {

    .dual-section {
        flex-direction: column;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 250px;
        height: 100vh;
        transform: translateX(100%);
        transition: 0.4s;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-extra {
        display: block;
    }

}

/* =========================
   AGREGADOS MENÚ MÓVIL
========================= */

.mobile-extra {
    display: none;
}

.mobile-info-box {
    background: var(--gris-claro);
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
    border-top: 4px solid var(--naranja);
    font-size: 14px;
}

.mobile-info-box h4 {
    color: var(--naranja);
    margin-bottom: 10px;
}

/* =========================
   VALORES DESPLEGABLE
========================= */

.valores-extra {
    margin-top: 40px;
}

.valores-extra .accordion-header {
    background: var(--naranja);
    color: white;
    border-radius: 8px;
}

.valores-extra .accordion-content ul {
    list-style: none;
    padding: 20px 0;
}

.valores-extra li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}