@font-face {
    font-family: 'JetBrainsMono';
    src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
    /* Add more font formats as needed for better browser support */
}


:root {
    --bullet-color: black; /* Default bullet point color */
    --bullet-hover-color: #29BB0E; /* Default bullet point color on hover */
}

body {
    margin: 0;
    padding: 0;
}

.header {
    height: 60px;
    background-image: url('images/FONDO MENU.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.shadow {
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.container {
    width: 96%;
    padding: 1% 1%;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: flex-start; /* Align items to the top */
}

.left-section {
    width: 20%;
    padding-right: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Center the items horizontally within the left section */
}

.text-column ul {
    list-style-type: none;
    padding-left: 5px;
}

.text-column li {
    margin-bottom: 5px;
    position: relative;
}

.text-column a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

.text-column ul li {
        margin-bottom: 15px; /* Adjust the value as needed for double line spacing */
    }


.text-column a:before {
    content: '\2022';
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 16px;
    color: var(--bullet-color); /* Use custom property for bullet point color */
    transition: color 0.3s;
    top: 3px;
}

.text-column a:hover {
    color: #1C7A09; /* Adjusted color for both text and bullet point on hover */
    text-decoration: none;
}

.text-column a:hover:before {
    color: #1C7A09; /* Adjusted color for both text and bullet point on hover */
}



.right-section {
    width: 75%;
    position: relative;
    max-width: 75%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center the items horizontally within the right section */
}

.slideshow-container {
    width: 100%;
    height: 600px;
    margin-top: 0px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 900px;
    height: 500px;
    display: none;
    position: relative;
    margin: 0 auto;
}

.slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.description {
    position: absolute;
    bottom: -58px;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    color: black;
    max-width: 100%;
    display: none;
    white-space: normal;
}

.arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background-color: #29BB0E;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.5); /* Adjust the shadow as needed */
}

.prev-arrow {
    left: 7px;
}

.next-arrow {
    right: 7px;
}

.header-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header-text {
    max-width: 100%;
    font-size: 22px;
    text-align: left;
    padding-right: 10px;
}

.header-image-left, .header-image-center {
    max-height: 90%;
    max-width: 90%;
}

.gif-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
}

.center-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image-container img {
    max-width: 150%; /* Adjust the maximum width as needed */
    max-height: 150%; /* Adjust the maximum height as needed */
    /* Add more styling properties if desired */
}

.right-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    /* ... Other existing mobile styles ... */
}

.header-image-left, .header-image-center, .header-image-right {
    position: relative;
}

.header-image-left {
    left: -160px;
}

.header-image-center {
    right: 120px;
}

.header-image-right {
    right: 0;
}


/* Media query for an HD TV SCREEN */
@media screen and (min-width: 1600px) and (max-width: 1920px) {
    :root {
        --column-content-width: 220px; /* Adjust column content width as needed */
        --column-width: 600px; /* Adjust column width as needed */
        --title-column-separation: 40px; /* Adjust the separation between columns */

        --datos-title-height: 400px; /* Adjust the height for DATOS GENERALES title */
        --series-title-height: 220px; /* Adjust the height for SERIES title */
        --codigo-title-height: 250px; /* Adjust the height for CÓDIGO QR title */
    }
    
    .header-image-left, .header-image-center {
    max-height: 80%;
    max-width: 80%;
}
    
    
    .slideshow-container {
    width: 100%;
    height: 870px;
    margin-top: 0px;
    display: flex;
    overflow: hidden;
    position: relative;
}

    .container {
        width: 100%; /* Occupy full width on larger screens */
        padding: 0;
        max-width: none; /* Remove maximum width */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        height: 900px;
    }
    
    .left-section {
        width: 20%;
        min-height: 900px; /* Adjust the height as needed */
        padding-right: 2%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .text-column a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.6;
}

    .right-section {
        display: flex; /* Use flex to center content vertically */
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        height: 100%; /* Occupy full height of the container */
    }

    .slide {
    width: 1250px;
    height: 700px;
    display: none;
    position: relative;
    margin: 0 auto;
}
    
    .description {
    position: absolute;
    bottom: -75px;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    color: black;
    max-width: 100%;
    display: none;
    white-space: normal;
}

    /* Adjust the column container */
    .column-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: var(--title-column-separation); /* Adjust the value as needed */
        height: 100%; /* Occupy full height of the container */
}
}