/* ============================================================
   RESET Y BASES GENERALES
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    color: #0A3D62;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #0A3D62 0%, #3E8E41 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo-hero {
    max-width: 270px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3))
            drop-shadow(0 0 5px rgba(255,255,255,0.15));
    transition: transform 0.3s ease;
}

.logo-hero:hover {
    transform: scale(1.02);
}

/*.logo img {
    height: 60px;          /* ajusta si quieres 55 / 65 */
    width: auto;
    border-radius: 12px;   /* NO 50% */
/*    object-fit: contain;
    display: block;
}
*/

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
}

/* Botones hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    width: 220px;
    padding: 16px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-hero:not(.btn-outline) {
    background-color: #ffffff;
    color: #0A3D62;
}

.btn-hero.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ============================================================
   FONDOS DE SECCIONES
============================================================ */
.section-quienes,
.section-planes {
    background: #ffffff;
}

.section-servicios,
.section-contacto {
    background: #edf2f7;
}

/* ============================================================
   LISTAS CON CHECK
============================================================ */
.lista-check {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
}

.lista-check li {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #7cb837;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ============================================================
   PLANES – SECCIÓN COMERCIAL
============================================================ */
.planes-section {
    background: #f3f6f9;
    padding: 90px 20px;
}

.planes-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
}

/* GRID DE PLANES */
.planes-section .planes-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* TARJETA DE PLAN */
.plan-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px 40px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pestaña superior */
.plan-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    border-radius: 16px 16px 0 0;
}

/* Colores por plan */
.plan-box.basico::before { background: #7cb837; }
.plan-box.profesional::before { background: #0A3D62; }
.plan-box.empresa::before { background: #c0392b; }

.plan-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.plan-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.plan-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Botón plan */
.btn-plan {
    display: inline-block;
    background: #3E8E41;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: #2f6f33;
    transform: translateY(-2px);
}

/* Hover tarjeta */
.plan-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

/* ============================================================
   FORMULARIOS
============================================================ */
.form-contacto {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-contacto input,
.form-contacto textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
}

.form-contacto textarea {
    min-height: 120px;
}

.btn-submit {
    background: #0A3D62;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.btn-submit:hover {
    background: #062f4f;
}

/* ============================================================
   BOTONES GENERALES
============================================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: #0A3D62;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
    .planes-section .planes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }
}

/* ============================================================
   OPTIMIZACIÓN ESCRITORIO
============================================================ */
@media (min-width: 1024px) {

    /* Reducir padding general de secciones */
    section {
        padding: 60px 0;
    }

    /* HERO más compacto */
    .hero {
        min-height: 320px;
    }

    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }

    .hero p {
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    /* Títulos más cercanos al contenido */
    h2 {
        margin-bottom: 30px;
    }

    /* Listas de check más compactas */
    .lista-check li {
        padding: 16px;
    }

    /* PLANES */
    .planes-section {
        padding: 70px 20px;
    }

    .planes-title {
        margin-bottom: 40px;
    }

    .plan-box {
        padding: 30px 25px 35px;
    }

    .plan-box ul {
        margin-bottom: 25px;
    }

    /* PROYECTOS */
    .proyectos-section {
        padding: 70px 20px;
        margin-top: 60px;
    }

    .proyectos-box {
        padding: 45px 50px;
    }

    .proyectos-descripcion {
        margin-bottom: 25px;
    }

    /* CONTACTO */
    .section-contacto {
        padding: 70px 0;
    }

    .form-contacto {
        padding: 25px;
    }

    /* FOOTER más compacto */
    .footer {
        padding: 30px 0;
    }
}
.breadcrumb {
    background: #ffffff;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0A3D62;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    color: #666;
    margin: 0 6px;
}
/* LOGO */
.logo img,
header img {
    max-height: 70px;
    border-radius: 14px;
    padding: 6px;
    background: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
/* BOTONES HERO UNIFICADOS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    padding: 16px 38px;
    border-radius: 40px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #0A3D62;
}

/* LOGO HERO */
.logo-hero {
    max-height: 8000px;
    border-radius: 25px;
    padding: 2px;
    background: #ffffff;
   box-shadow: 0 8px 2px rgba(0,0,0,0.18);
}
/* ============================
   BOTÓN PROYECTOS INDEX
============================ */

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #0A3D62;
}
/* ===============================
   BOTONES HERO (GLOBAL)
================================ */

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #0a3d62; /* azul oscuro corporativo */
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10,61,98,0.35);
}

.hero-btn:hover {
    background-color: #072f4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10,61,98,0.55);
}
/* ============================
   HERO GRACIAS
============================ */

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botón volver */
.hero-content .hero-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 30px;
    background: #0A3D62; /* azul corporativo */
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-content .hero-btn:hover {
    background: #062b45;
    transform: translateY(-2px);
}
.hero {
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    background: #0A3D62;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background: #062b45;
    transform: translateY(-2px);
}


