/* ============================
   HERO PROYECTOS
============================ */


.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0A3D62;
    text-shadow:
        -1px -1px 0 #ffffff,
         1px -1px 0 #ffffff,
        -1px  1px 0 #ffffff,
         1px  1px 0 #ffffff;
}

.hero p {
    color: white;
    max-width: 700px;
    margin: 0 auto 30px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    padding: 14px 30px;
    border-radius: 30px;
    background: #0A3D62;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero-btn:hover {
    background: #062b45;
}
.section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.section-blue {
    background: #0A3D62;
    color: white;
    padding: 80px 20px;
    text-align: center;
}
.services {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 800px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    text-align: left;
}

.services li {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* ============================
   FORMULARIO PROYECTOS
============================ */

.proyectos-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.proyectos-form .form-group input,
.proyectos-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.proyectos-form .form-group input:focus,
.proyectos-form .form-group textarea:focus {
    border-color: #0A3D62;
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.15);
}

.proyectos-form textarea {
    resize: vertical;
}

/* Botón */

.proyectos-form .btn-submit {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #0A3D62;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.proyectos-form .btn-submit:hover {
    background: #062b45;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
/* Título formulario en fondo azul */
.section-blue h2 {
    color: #ffffff;
}
.section-blue h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 12px auto 0;
    border-radius: 2px;
}
/* ============================
   COMPARATIVO – SOLO PROYECTOS
============================ */

.comparativo-proyectos .plan-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.comparativo-proyectos .plan-link:hover {
    cursor: pointer;
}

.comparativo-proyectos .plan-link:hover .plan {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

/* Colores por plan */
.comparativo-proyectos .plan-verde {
    border-top: 6px solid #4CAF50;
}

.comparativo-proyectos .plan-link:hover .plan-verde {
    background: rgba(76, 175, 80, 0.08);
}

.comparativo-proyectos .plan-azul {
    border-top: 6px solid #0A3D62;
}

.comparativo-proyectos .plan-link:hover .plan-azul {
    background: rgba(10, 61, 98, 0.08);
}

.comparativo-proyectos .plan-rojo {
    border-top: 6px solid #E53935;
}

.comparativo-proyectos .plan-link:hover .plan-rojo {
    background: rgba(229, 57, 53, 0.08);
}










