/* Reset básico */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body y animación */
body{
    font-family:'Poppins',sans-serif;
    background: rgba(255, 255, 255, 0.3);    color:#222;
    animation: aparecer 1s ease;
}

@keyframes aparecer{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Logo */
.logo{
    height: 200px;
    margin-bottom:20px;
    transition:0.3s;
}

.logo:hover{
    transform:scale(1.05);
}

/* Hero */
.hero{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:100px;
    padding:80px;
    min-height:80vh;
    
}

.contenido{
    max-width:460px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* Título */
h1{
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    padding: 15px;
}

/* Párrafo */
p{
    font-size:20px;
    color:#555;
    margin-bottom:35px;
    line-height:1.5;
}

/* Botón */
.boton{
    display:inline-block;
    padding:18px 36px;
    background:#000;
    color:white;
    text-decoration:none;
    border-radius:40px;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
    margin-bottom:0;
}

.boton:hover{
    background:#444;
    transform:translateY(-2px);
}

/* Correo debajo del botón */
.email {
    font-size: 1rem;           
    color: white;              
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5); 
    display: flex;             
    align-items: center;       
    gap: 8px;                 
    margin-top: 30px;          
}

.email i {
    color: #fff;   
}

.email a {
    color: black;           
    text-decoration: none;  
}


.email a:hover {
    color: #536656;         
}

/* Imagen a la derecha */
.imagen img{
    width:380px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* Móvil */
@media (max-width:768px){
    .hero{
        flex-direction:column;
        gap:35px;
        padding:30px;
    }

    .contenido{
        width:100%;
    }

    .imagen{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .imagen img{
        width:90%;
        max-width:320px;
    }

    h1{
        font-size:30px;
    }

    p{
        font-size:17px;
    }

    .logo{
        height:70px;
    }

    .email {
        font-size: 0.9rem;       
    }
}