@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#0b1c2c;
    overflow:hidden;
}

/* Fondo corporativo */
.fondo{
    position:fixed;
    width:100%;
    height:100%;
    background:
        radial-gradient(circle at 20% 30%, #1e4f7a 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, #0d2c4d 0%, transparent 45%),
        #081520;
    z-index:-1;
}

/* Contenedor */
.contenedor{
    width:100%;
    display:flex;
    justify-content:center;
    padding:30px;
}

/* Glass Card */
.card{

    max-width:650px;
    width:100%;
    padding:60px 50px;

    border-radius:24px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(22px);
    border:1px solid rgba(255,255,255,0.15);

    text-align:center;
    color:#fff;

    box-shadow:0 25px 60px rgba(0,0,0,0.35);

    animation:aparecer .9s ease;
}

@keyframes aparecer{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.logo{
    width:220px;
    margin-bottom:30px;
}

/* TITULO más pro */
h1{
    font-size:42px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;

    background:linear-gradient(90deg,#ffffff,#8bc5ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Descripción más elegante */
.descripcion{
    font-size:18px;
    line-height:1.7;
    opacity:.92;
    margin-bottom:40px;
    font-weight:300;
}

/* Contactos */
.info{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
}

/* Estilo más corporativo y discreto */
.contacto{

    text-decoration:none;
    color:#dbe9ff;

    font-size:17px;
    font-weight:400;
    letter-spacing:.3px;

    padding:6px 0;

    border-bottom:1px solid rgba(255,255,255,0.15);

    transition:.25s ease;
}

/* Hover elegante sin efecto botón */
.contacto:hover{
    color:#ffffff;
    border-bottom:1px solid rgba(139,197,255,0.8);
}

.contacto_contenido{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Iconos discretos estilo corporativo */
.icono{
    width:18px;
    height:18px;
    opacity:.85;
    filter:invert(1);
}


/* Responsive */
@media(max-width:600px){

    .card{
        padding:45px 25px;
    }

    h1{
        font-size:30px;
    }

    .descripcion{
        font-size:16px;
    }

    .logo{
        width:170px;
    }
}
