@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 */
}

:root {
    --bar-height: 50px; /* Default height for all vertical bars */
    --datos-bar-height: 35px; /* Height for DATOS GENERALES vertical bar */
    --series-bar-height: 81px; /* Height for SERIES vertical bar */
    --codigo-bar-height: 65px; /* Height for CÓDIGO QR vertical bar */
    --column-content-width: 180px; /* Adjust the width of the column content */
    --column-width: 200px; /* Adjust the width of the column */
}

:root {
    --datos-title-height: 245px; /* Adjust the height for DATOS GENERALES title */
    --series-title-height: 190px; /* Adjust the height for SERIES title */
    --codigo-title-height: 220px; /* Adjust the height for CÓDIGO QR title */
}

:root {
    --column-content-width: 180px; /* Adjust the width of the column content */
    --column-width: 600px; /* Adjust the width of the column */
}

:root {
        --title-column-separation: 20px; /* Adjust the value as needed */
    }
    
    


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;
    margin: 0 auto; /* Automatically center the container horizontally */
    max-width: 1200px; /* Adjust the maximum width as needed */
}



.left-section {
    width: 20%;
    padding-right: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.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 a:before {
    content: '\2022';
    position: absolute;
    left: 0;
    font-size: 28px;
    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;
}

.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: 200%; /* Adjust the maximum width as needed */
    max-height: 200%; /* 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;
}


/* Style for the image placeholder */

.image-placeholder {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-top: 20px; /* Adjust the margin as needed */
}

.image-placeholder img {
    max-width: 100%; /* Adjust the max width as needed */
    height: auto; /* Maintain aspect ratio */
}




/* Add these styles to your existing CSS */

.column-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-right: 50px; /* Adjust the value as needed */
    position: relative; /* Add this to position the vertical bars */
}

.column-content {
    flex: 1;
    padding: 0px;
    
}

.column-title {
    font-size: 20px;
    font-weight: bold; /* Make titles bold */
    text-transform: uppercase;
    transform: rotate(180deg);
    transform-origin: center;
    writing-mode: vertical-rl;
    margin: 0;
    /* Additional styles for the title text */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: visible; /* Allow overflowing text to be visible */
    
    /* Adjust the height as needed */
    min-height: 170px; /* Change this value to your desired minimum height */
    display: flex; /* Use flex display */
    align-items: flex-start; /* Align text to the top */
    padding: 0px; /* Add padding for spacing */
    box-sizing: border-box; /* Include padding in the height */
    margin-right: var(--title-column-separation); /* Use a custom property for separation */
}




.datos-title::after,
.series-title::after,
.codigo-title::after {
    content: "|"; /* Vertical bar */
    position: absolute;
    top: 65%;
    right: -3px; /* Adjust this value for positioning */
    transform: translateY(-50%);
    font-weight: bold; /* Make the bar bold */
    color: black; /* Set the color of the bar */
    font-size: 25px; /* Adjust the size of the bar */
    height: var(--bar-height); /* Use the custom property for height */
}

/* Individual height control for each vertical bar */

.datos-title::after {
    height: var(--datos-bar-height); /* Adjust the height for the DATOS GENERALES vertical bar */
}

.series-title::after {
    height: var(--series-bar-height); /* Adjust the height for the SERIES vertical bar */
}

.codigo-title::after {
    height: var(--codigo-bar-height); /* Adjust the height for the CÓDIGO QR vertical bar */
}


/* Add this to adjust the separation between columns */
.datos-column {
    margin-bottom: 20px; /* Adjust the value as needed */
}

.series-column {
    margin-bottom: 20px; /* Adjust the value as needed */
}

.codigo-column {
    margin-bottom: 20px; /* Adjust the value as needed */
}



.datos-title {
    height: var(--datos-title-height);
}

.series-title {
    height: var(--series-title-height);
}

.codigo-title {
    height: var(--codigo-title-height);
}

/* Adjust column content width to prevent overflow */
.column-content {
    width: var(--column-content-width);
    overflow: hidden;
}

/* Adjust column width */
.column-container {
    width: var(--column-width);
}






    /* Media query for an HD TV SCREEN */
@media screen and (min-width: 1600px) and (max-width: 1920px) {
    
    :root {
        
        --title-column-separation: 40px; /* Adjust the separation between columns */
    }
    
    
    .column-content {
        flex: 1;
        padding: 0px;
        font-size: 14px; /* Adjust the font size as needed */
    }

   
}




