/* ===== BODY ===== */
body{
    margin:0;
    padding:0;

    font-family: Arial, Helvetica, sans-serif;

    background:

        url('logoAMV.png');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    background-repeat:no-repeat;

    min-height:100vh;

    color:#222;
}
header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 50px;

    background:rgba(139, 0, 0, 0.85);
    backdrop-filter:blur(8px);

    position:sticky;
    top:0;
    z-index:1000;

    box-shadow:0 2px 15px rgba(0,0,0,0.25);
}
.hero{
    margin-bottom:80px;
}.proceso{
    margin-top:40px;
}

.logo{
    display:flex;
    align-items:center;
}

.nombre-empresa{
    color:white;
    margin:0;
    font-size:28px;
    font-family:'Cinzel', serif;
}
.logo img{
    height:75px;
    margin-right:12px;
}

/* ===== NAV ===== */
nav{
    display:flex;
    align-items:center;
    gap:25px;
}
nav a{
    text-decoration:none;
    color:white;
}
nav a{
    font-weight:600;
    font-family:'Cinzel', serif;
    font-size:20px;
    color:white;
    transition:0.3s;
}

nav a:hover{
    color:#D9D9D9;
}

/* ===== HERO ===== */
.hero{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;

    padding:80px 40px;

    flex-wrap:nowrap;

    max-width:1400px;
    margin:0 auto 80px auto;
}
.aseso{
    flex:1;
}

.info{
    flex:1;
}

/* ===== PANEL INFO ===== */
.info{
    width:100%;
    max-width:520px;
    background:rgba(255,255,255,0.92);
    padding:40px;
    border-radius:20px;
    box-sizing:border-box;
    box-shadow:0px 10px 30px rgba(0,0,0,0.3);
    border-top:6px solid #8B0000;
    font-family:Arial, sans-serif;
}

/* ===== TITULO ===== */
.info h1{
    font-size:34px;
    color:#0D3B66;
    margin-bottom:20px;
}

/* ===== TEXTO ===== */
.info p{
    font-size:18px;
    color:#333;
    line-height:1.6;
    margin-bottom:25px;
}

/* ===== BOTON ===== */
button{
    width:80%;
    padding:15px;
    font-size:22px;
    border:none;
    border-radius:10px;
    background-color:#8B0000;
    color:white;
    cursor:pointer;
    transition:0.3s;
    font-weight:bold;
}

button:hover{
    background-color:#5C0000;
    transform:scale(1.04);
}

/* ===== IMAGEN PRINCIPAL ===== */
.img-superior{
    width:100%;
    max-width:650px;
    height:auto;
    display:block;
    border-radius:10px;
}

/* ===== PROCESO ===== */
.proceso{
    padding:100px 40px 60px 40px;
    background:rgba(244,244,244,0.95);
    text-align:center;
    clear:both;
}

.proceso h2,
.secciones h2{
    font-size:34px;
    color:#0D3B66;
}

.subtitulo{
    font-size:18px;
    color:#555;
    margin-bottom:50px;
}

/* ===== TARJETAS ===== */
.pasos,
.contenedor-secciones{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.paso,
.card{
    width:260px;
    padding:30px;
    background:white;
    border-radius:18px;
    box-shadow:0px 6px 20px rgba(0,0,0,0.15);
    border-top:5px solid #8B0000;
    transition:0.3s;
    text-align:left;
}

.paso:hover,
.card:hover{
    transform:translateY(-8px);
}

.paso h3,
.card h3{
    color:#8B0000;
}

.paso p,
.card p{
    color:#444;
    line-height:1.5;
}

/* ===== SECCIONES ===== */
.secciones{
    padding:60px 40px;
    background:rgba(244,244,244,0.95);
    text-align:center;
}

/* ===== REDES ===== */
.social{
    background:#0D3B66;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    padding:30px 0;
}

.social a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
    border-radius:50%;
    color:#333;
    font-size:22px;
    transition:0.3s;
}

.social a:hover{
    transform:translateY(-8px) scale(1.1);
}

.social a:nth-child(1):hover{
    background:#1877F2;
    color:white;
}

.social a:nth-child(2):hover{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
    color:white;
}

.social a:nth-child(3):hover{
    background:#25D366;
    color:white;
}

.social a:nth-child(4):hover{
    background:#8B0000;
    color:white;
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    nav{
        justify-content:center;
        flex-wrap:wrap;
    }

    nav a{
        font-size:15px;
    }

    .hero{
        flex-direction:column-reverse;
        padding:40px 20px;
        gap:30px;
    }

    .info{
        max-width:100%;
        padding:25px;
        text-align:center;
    }

    .info h1{
        font-size:28px;
    }

    button{
        width:100%;
    }

    .logo{
        font-size:18px;
    }

    .logo img{
        height:60px;
    }
}