/* Reset básico */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Base */

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: white;
}


/* Hero ocupa toda la pantalla */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}


/* Overlay para centrar botones */

.overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}


/* Botones */

.btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1em;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.btn:hover {
    background: white;
    color: black;
    border-color: white;
}


/* Logo en el lado derecho interior */

.logo-container {
    position: absolute;
    top: 90%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px;
}

.logo-img {
    width: 90px;
    /* ~3 cm */
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


/* Responsivo */

@media (max-width: 768px) {
    .logo-container {
        right: 15px;
        top: 20px;
        transform: none;
    }
    .logo-img {
        width: 80px;
    }
    .btn-container {
        gap: 15px;
    }
    .btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}