﻿.image-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/fondoNegroTijeras.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 👈 Oscurece con transparencia */
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding: 20px 10px;
    text-align: center;
}

/* LOGO */
.logo-container {
    margin-top: 20px;
    margin-bottom: 40px; /* 👈 separación con el botón */
}

.logo-img {
    width: 200px;
    height: auto;
}

/* BOTÓN */
.button-container {
    margin-bottom: 40px; /* 👈 separación con las redes */
}

    .button-container .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }

/* REDES SOCIALES */
.social-container {
    margin-bottom: 20px;
}

.icon {
    width: 36px;
    height: 36px;
    margin: 0 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo-img {
        width: 150px;
    }

    .button-container .btn {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }

    .icon {
        width: 32px;
        height: 32px;
    }
}
