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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #fff;
}

a :hover {
    background-color: #000;
    
}

/* Estilos del Menú de Navegación */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.navbar ul {
    display: flex;
    justify-content: center;
    padding: 15px;
    list-style-type: none;
    font-size: 13px;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #ff0000c4;
}

/* Estilos de la Sección Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding-top: 60px; /* Ajuste para que el video no quede cubierto por el menú */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
}

.mute-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s;
}

.mute-button:hover {
    background-color: rgba(255, 255, 255, 1);
}


/* Sección de Portafolio */
.portfolio {
    padding: 80px 50px;
    background-color: #f4f4f4;
    text-align: center;
}

.portfolio a {
    color: #ff0000c4;
}

.portfolio-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 1px;
    width: 30%;
    text-align: center;
}

.portfolio-item img {
    width: 100%;
    border-radius: 1px;
    margin-bottom: 10px;
}

/* Sección de Información */


.info-section {
    background-color: #000;
    color: #fff;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.info-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.info-content img {
    width: 50%;
    border-radius: 1px;
}

.info-text {
    max-width: 500px;
    padding: 20px;
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    /* Portafolio y otros ajustes (sin cambios) */
    
    .portfolio-item, .info-content img {
        width: 100%;
    }

    /* Cambiar la dirección de los elementos en la sección de información */
    .info-content {
        flex-direction: column; /* Cambia a columna en pantallas pequeñas */
    }

    .info-content img {
        width: 100%; /* Imagen ocupa el 100% del ancho */
        margin-bottom: 20px; /* Espacio debajo de la imagen */
    }
}


/* Sección de Contacto */
.contact {
    font-family: "Bebas Neue", sans-serif;
    padding: 50px;
    text-align: center;
    align-content: center;
    background-color: #690202;
    color: #fff;
}

.contact p {
    font-size: 23px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.contact input,
.contact textarea,
.contact button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact button {
    background-color: #0066cc;
    color: white;
    cursor: pointer;
}

.contact button:hover {
    background-color: #005bb5;
}

/* Media Queries para hacer Responsive */
@media (max-width: 768px) {
    .portfolio-item, .info-content img {
        width: 100%;
    }

    .info-section {
        flex-direction: column;
    }
}

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  