*{
	margin: 0px;
	border: 0px;
	padding: 0px;
	list-style: none;
	text-decoration: none;
	outline: none;
}

.body{
    background-color: white;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;           /* 🔥 importante */
    box-sizing: border-box; /* 🔥 para que el padding no rompa el ancho */
    padding: 3%;

    position: sticky;
    top: 0; /* 🔥 necesario para sticky */

    background: rgb(58, 58, 58);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    color: white;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
}
.logom {
    color: white;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
}
.logoconf{
    background-color: #25d366;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    text-decoration: none;
    padding: 5px 5px;
}

/* Hero Section */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* .imagendefondo{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
} */
.imagendefondo {
    position: relative;
    display: flex;
    flex-direction: column;
    width: fit-content; /* Se ajusta al ancho de la imagen más grande */
}


.overlay {
    position: absolute;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* background: rgba(0, 0, 0, 0.45); */
    z-index: 1;
}

/* .hero-content {
    position: absolute;
    z-index: 1;
    max-width: 100%;
    padding: 0 20px;
    font-size: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
} */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinea el contenido desde arriba */
    z-index: 10;
}
.img-full {
    width: 100%; /* Esto hace que la imagen angosta crezca hasta el ancho de la mayor */
    display: block;
}



.hero-content video{
    border: 13px solid #000000;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
    /* display: block; */
    /* margin: 20px auto; */
    /* max-width: 100%; */
}

.hero-content h1 {
    font-family: var(--font-main);
    font-size: 5rem;
    margin-bottom: 1rem;
    justify-content: center;
    color: #000000;
    text-shadow: 
    1px 1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px -1px 0 #ffffff;
}
.hero-content p {
    font-size: 3rem;
    color: #000000;
    font-weight: bold;
    font-style: italic;
    text-shadow: 
    1px 1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px -1px 0 #ffffff;
}

/* TABLET / CELULAR */
@media (max-width: 768px) {
    .main {
        /* padding: 10px; */
    }
}

@media (max-width: 480px) {
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .imagendefondo {
        /* margin: 10px; */
        background-color: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        position: relative;
    }
    /* .img-full {
        width: 11px;
    } */
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-family: var(--font-main);
        font-size: 30px;
        margin-bottom: 1rem;
        text-align: center;
        color: #ff00fb;
        text-shadow: 
        1px 1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px -1px 0 #ffffff;
    }
    .hero-content p {
        font-size: 20px;
        color: #000000;
        font-weight: bold;
        font-style: italic;
        text-align: center;
        text-shadow: 
        1px 1px 0 #ffffff,
        -1px 1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px -1px 0 #ffffff;
    }
    
    video {
        scale: 70%;
    }

}