/* ===================== FRANJA VERDE ===================== */
.franja-verde {
    background-color: #25D366; /* Verde similar al de tu imagen */
    color: black;               /* Color del texto */
    font-weight: bold;          /* Texto en negrita */
    text-align: center;         /* Centrar texto */
    padding: 15px 0;            /* Espaciado arriba y abajo */
    font-family: Arial, sans-serif;
    font-size: 30px;            /* Tamaño del texto */      
    }
:root {
    --verde: #1db954;
    --plomo: #2e2e2e;
    --gris: #555;
    --blanco: #ffffff;
}

/* ===== TITULOS ===== */
.nosotros-titulo,
.pasos-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--plomo);
}

.nosotros-texto {
    font-size: 1.05rem;
    color: var(--gris);
    line-height: 1.7;
}

/* ===== CARDS ===== */
.card-tech {
    height: 100%;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all .35s ease;
}

.card-tech h3 {
    color: var(--verde);
    font-weight: 700;
    margin-bottom: 15px;
}

.card-tech ul {
    list-style: none;
    padding: 0;
}

.card-tech ul li {
    font-size: 0.95rem;
    color: var(--gris);
    margin-bottom: 6px;
}

.card-tech:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(29,185,84,0.25);
}

/* ===== PASOS ===== */
.paso-card {
    height: 100%;
    background: var(--blanco);
    border-left: 6px solid var(--verde);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.paso-numero {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: var(--verde);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-bottom: 10px;
}

/* ===== CIERRE ===== */
.cierre-tech {
    background: linear-gradient(135deg, #1db954, #159947);
    color: white;
    padding: 70px 0;
}

.cierre-tech h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cierre-tech p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.btn-tech {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--verde);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-tech:hover {
    background: #f0f0f0;
    color: #128a3f;
}

/* ===== ANIMACIONES ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nosotros-titulo,
    .pasos-titulo {
        font-size: 1.8rem;
    }
}
