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

}

body {
    background: #000;
    color: #35336c;
    background-color: #8786b5;
    /**
    background-color: #0c0c0c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='105' viewBox='0 0 80 105'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='death-star' fill='%23540606' fill-opacity='0.1'%3E%3Cpath d='M20 10a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm15 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zM20 75a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zm30-65a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm0 65a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zM35 10a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zM5 45a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zm60 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
    */
    font-size: 16px;
    font-family: 'Oswald', sans-serif;

}

a {
    color: #35336c;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container{
    width: 95%;
    margin: auto;
}

/* navegacion*/

.nav-main{
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 20px 0;

}

.portada{
    height: 50px;
    width: auto;

}

/*Navegacion Izquierda*/
.nav-main ul {
    display: flex;

}

.nav-main ul li {
    padding: 10px;
}

.nav-main ul li a{
    padding: 2px;
}

.nav-main ul li a:hover {
    border-bottom: 2px solid #fff;
}

.nav-main ul.nav-menu{
    flex: 1;
    margin-left: 20px;
}

.menu-btn{
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 30px;
    z-index: 2;
    display: none;
}

/*showcase*/

hr{
    margin: 10px 0;
}

.showcase {
    width: 100%;
    background: red;
    height: 275px;
    background: url(img/banner-website.png) no-repeat center center/cover;
    padding: 50px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.btn {
    cursor: pointer;
    display: inline-block;
    border: 0;
    font-weight: bold;
    padding: 10px 20px;
    background: #262626;
    color:#fff;
    font-size: 15px;
    border: 1px solid #fff;
    margin: 10px 0;
    
}

.btn:hover{
    opacity: .7;
}

.showcase h2,
.showcase p {
    margin-bottom: 10px;
}

/* news cards */
.news-card{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* repeat(4, 1fr) otra forma de hacerlo*/
    gap: 25px;
    margin: 10px 0;

}

.news-card img {
    width: 100%;
    height: 180px;
}

.news-card h3 {
    font-size: 20px;
    margin: 10px 0;

}

.news-card a {
    padding: 10px 0;
    color: #f2f2f2;
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;

}

.news-card a:hover {
    text-decoration: underline;
}

/* cards banner one */

.card-banner-one {
    width: 100%;
    height: 450px;
    background: url(img/banner-steelfire.png) no-repeat center center/cover;   
    margin-bottom: 40px;
}

.videos{
    color: #35336c;
}

.card-banner-two {
    width: 100%;
    height: 350px;
    background: url(img/banner-formula.png) no-repeat center center/cover;   
    margin-bottom: 40px;
}

.card-banner-one .content {
    width: 40%;
    padding: 90px 0 0 30px;
    color: #fff;
}

.card-banner-one p,
.card-banner-one h2 {
    margin: 10px 0 20px 0;
    
}

/* cards others */

/* cards-banner-two */
.cards-banner-t{
    width: 95%;
    height: 800px;
    background: url(img/img-five.png) no-repeat center center/cover;  
    margin: 40px;
}


.cards-banner-two .content {
    width: 50%;
    padding: 100px 0 0 30px;
    color: #fff;
}

/* social */

.social {
    margin: 50px;
}

.social p {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.links a{
    margin: 0 30px;
}

.links a i {
    font-size: 3rem;
}

/* footer links*/

.footer-links {
    background: #2f3640;
    color: #616161;
    font-size: 12px;
    padding: 35px 0;

}

.footer-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.footer-container ul {
    margin: 0 auto;
}

.footer-container ul li {
    line-height: 2.8;
}

/* footer */

.footer {
    background: #2f3640;
    color: #616161;
    font-size: 12px;
    padding: 20px 0;
    text-align: center;
    padding-bottom: 20px;
}

/* seccion estilos contactos */

#contacto {
    padding: 100px 15px;
}

#contacto .titulo-seccion {
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    color: #111135;
    text-decoration: underline;
    text-decoration-color: #171090;
    text-decoration-thickness: 5px;
}

#contacto .contenedor-form {
    max-width: 1100px;
    margin: auto;
}

#contacto .contenedor-form .fila {
    margin-bottom: 15px;
}

#contacto .contenedor-form .mitad{
    display: flex;
    justify-content: space-between;
}

#contacto .contenedor-form input,
#contacto .contenedor-form textarea {
    padding: 20px;
    border-radius: 20px;
    border: none;
    border: 1px solid #6764a4;
}
#contacto .contenedor-form .mitad input{
    width: 48%;
}

#contacto .contenedor-form .input-full {
    width: 100%;
}

#contacto .btn-enviar {
    display: block;
    margin: auto;
    cursor: pointer;
    transition: .5s;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
}

#contacto .btn-enviar:hover{
    background-color: #3d34e5;
    color: #fff;
}

@media (max-width:700px) {
    .menu-btn {
        display: block;
    }

    .nav-main ul.nav-menu{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background: #2f3640;
        height: 100%;
        padding: 30px;
        opacity: .9;
        transform: translateX(-400px);   
        transition: transform .5s ease-in-out;
    }

    .nav-main ul.nav-menu.show {
        transform: translateX(-20px);
    }

    .nav-main ul.nav-menu li {
        padding: 20px;
        font-size: 14px;
    }



    .nav-main ul.nav-menu-right{
        margin-right: 40px;
    }



    .news-card{
        grid-template-columns: repeat(2, 1fr);
    }

    .card-banner-one .content,
    .cards-banner-two .content{
        width: 80%;
    }

    .card-banner-one{
        width: 100%;
        height: 150px;
        background: url(img/banner-steelfire.png) no-repeat center center/cover;   
        margin-bottom: 40px;
    }

    .card-banner-two {
    width: 100%;
    height: 130px;
    background: url(img/banner-formula.png) no-repeat center center/cover;   
    margin-bottom: 40px;
    }

    .cards-banner-t{
        width: 80%;
        height: 150px;
        background: url(img/img-five.png) no-repeat center center/cover;  
        
    }

       
    .footer-links .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width:500px) {
    .news-card{
        grid-template-columns: 1fr;
    }

    .news-card img {
        height: 250px 0;
    }

    .card-banner-one .content,
    .cards-banner-two .content{
        width: 100%;
        padding: 60px 20px;
    }

    .footer-links .footer-container {
        grid-template-columns: 1fr;
    }
}



/** aca agregando estylos para #steelfire9239 */



.video-section {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-right: 1em;
    padding: 1em;
    border-radius: 8px;
}
.video-card {
    background-color: #1f1f1f;
    margin-right: 1em;
    padding: 1em;
    border-radius: 8px;
    min-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
}
.video-card iframe {
    width: 100%;
    height: 200px;
}

.noticia-imagen {
    width: 150px;
    height: 250px;
    object-fit: cover; /* Ajusta la imagen para que cubra el área especificada */
}
.news-section {
    margin-top: 1em;
}

.news-section {
    padding: 10px;
    background-color: #ecdbdb;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #121212;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
}

.news-article {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.news-article img.noticia-imagen {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    
}

.news-article h3 {
    margin: 20px 0;
}

.news-article p {
    margin: 2px;
}


.news-article {
    background-color: #1f1f1f;
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

footer {
    background-color: #1f1f1f;
    color: white;
    text-align: center;
    padding: 1em 0;
}
footer .social-links a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}
footer .social-links a:hover {
    text-decoration: underline;
}
.scroll-buttons {
    text-align: center;
    margin: 1em 0;
}
.scroll-buttons button {
    background-color: #282828;
    color: white;
    border: none;
    padding: 0.5em 1em;
    margin: 0 0.5em;
    cursor: pointer;
}
.scroll-buttons button:hover {
    background-color: #383838;
}
@media (max-width: 768px) {
    .video-card iframe {
        height: 150px;
    }
}
@media (max-width: 480px) {
    .video-card {
        min-width: 200px;
    }
    .video-card iframe {
        height: 100px;
    }
}






































