p {
    font-family: sans-serif;
}

/* ----------------------------- */
/* Sección Lanzamiento           */
/* ----------------------------- */

.lanzamiento-section {
    position: relative;
    background-image: url('../img/slide-fuego-interior-02.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    z-index: 2;
    overflow: hidden;
}

.lanzamiento-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    filter: grayscale(100%) brightness(0.3);
    z-index: -1; 
}

.lanzamiento-section .container {
    display: flex;
    gap: 20px;
}

.lanzamiento-section .columna {
    flex: 1;
}

.lanzamiento-section .columna.imagen {
    flex: 1;
}

.lanzamiento-section .columna.contenido {
    flex: 1;
}

.lanzamiento-section .columna.imagen img {
    width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}

.lanzamiento-section h1 {
    margin-bottom: 0;
    font-size: 32px;
    text-align:center;
    color:#d0a06f;
}

.lanzamiento-section h1.tag {
    font-size: 18px;
    margin-bottom: 40px;
}

.lanzamiento-section p {
    color:#999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

/* Botones de Plataformas */

.plataformas-botones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.plataforma-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 15px;
    background-color: #222;;
    color: #d0a06f;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    text-align: left;
}

.plataforma-btn i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.plataforma-btn:hover {
    background-color: #ba1212;;
}

a.plataforma-btn {
  font-family: sans-serif !important;
}

/* Estilos Responsive */

@media (max-width: 768px) {
    .lanzamiento-section {
        padding: 40px 5%;
    }

    .lanzamiento-section .container {
        flex-direction: column;
        gap: 20px;
    }

    .lanzamiento-section .columna.imagen img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .lanzamiento-section h1 {
        font-size: 28px;
        text-align:center;
    }

    .lanzamiento-section h1.tag {
        font-size: 20px;
        text-align:center;
    }

    .lanzamiento-section p {
        font-size: 13px;
        text-align:justify;
    }
    .plataformas-botones {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----------------------------- */
/* Sección Estreno               */
/* ----------------------------- */

.estreno-section {
    position: relative;
    background-image: url('../img/slide-fuego-interior-01b.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    z-index: 2;
    overflow: hidden;
}

.estreno-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    filter: grayscale(100%) brightness(0.3);
    z-index: -1; 
}

.estreno-section h1 {
    color: #d0a06f;
    font-size: 32px;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Estilos Responsive */
@media (max-width: 768px) {
    .estreno-section {
        padding: 40px 5%;
    }

    .estreno-section h1 {
        font-size: 28px;
    }
}

/* ----------------------------- */
/* Sección Juego                 */
/* ----------------------------- */

.juego-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: url('../moto/img/bg-game.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Capa de color superpuesta */
.juego-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/* Contenedor del contenido */
.juego-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.juego-section .columna {
    flex: 1;
}

.juego-section .columna.imagen {
    flex: 1;
}

.juego-section .columna.contenido {
    flex: 2;
}

.juego-section .columna.imagen img {
    width: 50%;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}

.juego-section h2 {
    text-align: center;
    color:#d0a06f;
}

.buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.language-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: rgba(0, 0, 0, 0.75); /* Negro semitransparente */
    color: #874b63;
    font-family: 'Forum', serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #874b63;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;  text-align: center;
}

.language-btn:hover {
    background-color: rgba(74, 52, 90, 0.75); /* Color morado semitransparente */
    color: #d0a06f;
    border-color: #d0a06f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.language-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    
    .buttons-wrapper {
        gap: 20px;
    }
    
    .language-btn {
        padding: 12px 30px;
        font-size: 16px;
        min-width: 130px;
    }
}

@media (max-width: 480px) {

    .buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .language-btn {
        width: 200px;
        margin: 0 auto;
    }
}

/* Estilos Responsive */

@media (max-width: 768px) {
    .juego-section {
        padding: 40px 5%;
    }

    .juego-section .container {
        flex-direction: column;
        gap: 20px;
    }

    .juego-section .columna.imagen img {
        width: 50%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }

    .juego-section h2 {
        font-size: 24px;
        text-align: center;
    }

    .juego-section a {
        text-align: center;
    }
}

/* ----------------------------- */
/* Sección Proyecto              */
/* ----------------------------- */

.proyecto-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: url('../img/slide-fuego-interior-01b.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Capa de color superpuesta */
.proyecto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/* Contenedor del contenido */
.proyecto-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.proyecto-section .columna {
    flex: 1;
}

.proyecto-section .columna.imagen {
    flex: 1;
}

.proyecto-section .columna.contenido {
    flex: 1;
}

.proyecto-section .columna.imagen img {
    width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    margin: -20px 0 0 0 !important;
}

.proyecto-section h1 {
    font-size: 32px;
    text-align: center;
    color:#d0a06f;
}

.proyecto-section p {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

/* Botones de Redes */

.redes-botones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.redes-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 15px;
    background-color: #222;;
    color: #d0a06f;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    text-align: left;
}

.redes-btn i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.redes-btn:hover {
    background-color: #ba1212;
}

a.redes-btn {
  font-family: sans-serif !important;
}

/* Estilos Responsive */

@media (max-width: 768px) {
    .proyecto-section {
        padding: 40px 5%;
    }

    .proyecto-section .container {
        flex-direction: column;
        gap: 20px;
    }

    .proyecto-section .columna.imagen img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .proyecto-section h1 {
        font-size: 28px;
        text-align: center;
    }

    .proyecto-section p {
        font-size: 13px;
        text-align: justify;
    }
    .redes-botones {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----------------------------- */
/* Sección Discografia           */
/* ----------------------------- */

.discografia-section {
    position: relative;
    background-image: url('../img/slide-poder-nuestro-01.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    z-index: 2;
    overflow: hidden;
}

/* capa oscura */
.discografia-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    filter: grayscale(100%) brightness(0.3);
    z-index: -1;
}

.discografia-section .container {
    position: relative;
    z-index: 2;
}

.discografia-section h1 {
    font-size: 32px;
    text-align: center;
    color: #d0a06f;
    margin-bottom: 40px;
}

/* ----------------------------- */
/* GRID DE ALBUMES               */
/* ----------------------------- */

.discografia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* album */
.discografia-grid .album {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* imagen */
.discografia-grid a {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

.discografia-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

.discografia-grid img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* titulo album */
.discografia-grid h3 {
    margin: 15px 0 10px;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
}

/* ----------------------------- */
/* SELECT DE PLATAFORMAS         */
/* ----------------------------- */

.platform-select {
    width: 100%;
    margin-top: 10px;
}

.platform-select select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background-color: #222;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* hover */
.platform-select select:hover {
    background-color: #be0e19;
    color: #fff;
}

/* focus */
.platform-select select:focus {
    background-color: #be0e19;
    color: #fff;
}

/* opciones */
.platform-select option {
    background-color: #111;
    color: #fff;
}

/* ----------------------------- */
/* RESPONSIVE                    */
/* ----------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .discografia-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 600px) {
    .discografia-grid {
        grid-template-columns: 1fr;
    }

    .discografia-section {
        padding: 60px 8%;
    }

    .discografia-section h1 {
        font-size: 26px;
    }
}

/* ----------------------------- */
/* Sección Videoclips            */
/* ----------------------------- */

.videoclips-section {
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: url('../img/slide-fuego-interior-01b.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Capa de color superpuesta */
.videoclips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.videoclips-section h1 {
    text-align: center;
    color:#d0a06f;
    font-size: 32px;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-link {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease; 
}

.video-link:hover .video-thumbnail {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button i {
    color: #874b63;
    font-size: 24px;
    margin-left: 0px;
}

.video-link:hover .play-button {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Estilos Responsive */
@media (max-width: 768px) {
    .videoclips-section {
        padding: 40px 5%;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}