/* Estilo general */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Header */
.header {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 10;
}

.header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

/* Sección con imagen de fondo */
.hero {
    height: 100vh;
    background-image: url("vsantaolalla_fondo.png"); /* <-- Cambia por tu foto */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: brightness(0.7);
}

.content {
    text-align: center;
    background: rgba(0,0,0,0.55);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Botones redes */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #ff7200;
    transition: 0.3s;
    display: inline-block;
}

.btn:hover {
    background: #ff8c2a;
    transform: translateY(-3px);
}

/* Button base */
.social-btn {
    width: 55px;
    height: 55px;
    background: #ff7200;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-btn svg {
    width: 28px;
    height: 28px;
}

.social-btn:hover {
    background: #ff8c2a;
    transform: translateY(-4px);
}

/* Responsive optimizado */
@media (max-width: 600px) {
    .header h1 {
        font-size: 1.6rem;
    }

    .buttons-container {
        gap: 15px;
        bottom: 40px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }

    .social-btn svg {
        width: 22px;
        height: 22px;
    }
}

