:root {
    --primary: #049ee3;
    --secondary: #FDEA12;
    --secondary: #FDEA12;
    --gray: #CEFDF6;
    --white: #fff;
    --red: #b52a30;
}

@font-face {
    font-family: 'Gotham';
    src: url(../fonts/GothamMedium.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBold';
    src: url(../fonts/Gotham-Bold.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBook';
    src: url(../fonts/Gotham-Book.otf);
    font-weight: normal;
    font-style: normal;
}

.main {
    overflow-x: hidden;
    width: 100%;
}

.font-primary {
    font-family: 'Gotham';
}

.font-bold {
    font-family: 'GothamBold';
}

.font-book {
    font-family: 'GothamBook';
}



.logo {
    height: 3rem;
}

.anim-embed {
    font-family: 'Gotham';
    background-color: #fff;
    color: #fff;

    scroll-behavior: smooth;
}

.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: #fff !important;
}

.first {
    margin-top: 5rem;
}

#banner {
    background-image: url(../img/back-blue.png);
}

#banner p {
    max-width: 60%;
    font-size: 1.3rem;
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* altura completa */
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* opcional */
    text-align: center;
    bottom: 3rem;
}

.btn-group-custom {
    display: flex;
    justify-content: center;
    gap: 200px;
}

.btn-custom {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 300px;
    font-family: 'GothamBold';
}

.btn-red {
    background-color: var(--red);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 230px;
    font-family: 'GothamBold';
}

.btn-custom:hover {
    background-color: var(--red);
    transform: translateY(-2px);
    color: var(--white);
}

.backgroud-red {
    background-image: url(../img/backgroud.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.actions {
    position: absolute;
    bottom: 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    /* Coloca texto y botón en columna */
    align-items: flex-end;
    /* Alinea el botón a la derecha */
    padding: 10px;
}

.actions p {
    margin: 0 0 5px 0;
    /* separa un poco del botón */
    align-self: center;
    font-size: 1.3rem;
}

.circle-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.circle-icon:hover {
    background-color: var(--red);
    color: var(--white);
}

.custom-box {
    border: 1px solid var(--red);
    background-color: transparent;
    border-radius: 10px;
    color: white;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centra verticalmente */
    align-items: center;
    /* centra horizontalmente */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-box img {
    max-height: 60px;
    /* ajustar tamaño de imagen */
    margin-bottom: 10px;
}

.custom-box.active {
    background-color: var(--red);
}

.custom-box:hover {
    background-color: var(--red);
}


.footer {
    background-color: #3a3a3a;
}

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

.footer .icon-rrss img {
    width: 1.5rem;
    margin-right: 1.5rem;
    transition: transform 0.3s ease;
}

.help-box {
    position: fixed;
    bottom: 20px;
    /* separado del borde inferior */
    right: 0;
    /* pegado a la derecha */
    background-color: #bfb402;
    color: #fff;
    padding: 15px 20px;
    border-top-left-radius: 15px;
    /* esquinas redondeadas lado izquierdo */
    border-bottom-left-radius: 15px;
    font-weight: 500;
    cursor: pointer;
    z-index: 9999;
    /* siempre por encima de otros elementos */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    /* sombra opcional */
    transition: background-color 0.3s ease;
    font-family: 'GothamBold';
}

.help-box:hover {
    background-color: #a9a002;
    /* tono más oscuro al pasar el mouse */
}


.scale {
    transition: transform 0.3s ease;
}

.scale:hover {
    transform: scale(1.1);
}

.scale-min {
    transition: transform 0.3s ease;
}

.scale-min:hover {
    transform: scale(1.05);
}

.footer .icon-rrss img:hover {
    transform: scale(1.1);
}

.footer .links a {
    font-size: 1rem;
}

.footer .links a:hover {
    color: var(--secondary);
}

.footer .links a:not(:last-child)::after {
    content: "|";
    margin: 0 8px;
}

.modal {
    color: #000;
    font-family: 'Gotham';
}

.modal-content {
    border-radius: 50px !important;
}

.modal a {
    color: var(--primary);
    text-decoration: none;

}

.modal a {
    color: var(--primary);
    text-decoration: none;
}

.modal h3 {
    font-size: 1.5rem;
    max-width: 300px;
    text-align: left;
}

.modal-dialog {
    max-width: 800px !important;
}

.modal-body {
    background-image: url(../img/back-modal.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
}

.hidden {
    display: none;
}

.video {
    width: 100%;
    /* ocupa todo el ancho del contenedor */
    height: auto;
    /* mantiene proporción */
    display: block;
    /* quita espacios en blanco */
    border-radius: 8px;
    /* opcional: esquinas redondeadas */
    object-fit: cover;
    /* recorta si es más alto/ancho */
    border: 1px solid;
}

.accordion {
    /* max-width: 600px; */
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    /* separación entre items */
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(to right, #ffbeba, #ffffff);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    color: #000;
    font-family: 'GothamBold';
}

.accordion-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    /* background: #fff; */
    color: #000;
    font-family: 'GothamBook';
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* ajusta según contenido */
    padding: 15px 20px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon::before {
    content: "-";
}

.accordion-item:first-of-type {
    border-top-left-radius: 50px !important;
    border-top-right-radius: 50px !important;
}

.accordion-item:last-of-type {
    border-bottom-left-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}


/*
Scroll Animation
*/

.animation-container {
    height: 4910px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-animation {
    width: 100%;
    height: 100%;
    background-image: url('../img/animation/RDR0000.webp');
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
}

.info-container {
    position: absolute;
    left: 10%;
    z-index: 10;
    color: white;
    width: 80%;
    height: 100%;

    display: flex;
    align-items: flex-start;

    justify-content: space-between;
    flex-direction: column;

    column-gap: 5rem;

    padding-bottom: 10%;
    padding-top: 15%;
}

.text-container {
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.text-container .title-anim {
    font-size: 4.2rem;
    line-height: 1;
    font-weight: 900;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.text-container .sub-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.text-container .text {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 100;

    margin-bottom: 3%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.text-container .text span {
    font-weight: 900;
}

.text-container .icon-container {
    display: flex;
    align-items: center;
    column-gap: 1.2rem;
}

.text-container .icon-container .icon img {
    width: 40px;
}

.text-container .icon-container p {
    font-weight: 100;
    margin: 0;
}

.text-container .icon-container {
    padding: 2rem 0;
}

.text-container .text {
    max-width: 420px;
}

.box {
    max-width: 370px;
    background-color: rgba(126, 8, 13, 1);
    backdrop-filter: brightness(0.5);
    -webkit-backdrop-filter: brightness(0.5);
    border: 2px solid rgb(189, 13, 22);
    padding: 2% 2%;
    border-radius: 16px;

    font-size: 11px;
    font-weight: 100;
    overflow: hidden;
}

.text-container ul {
    padding: 0;
    list-style: none;
    padding-left: 1.2rem;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.text-container ul li {
    position: relative;
    padding-bottom: 10px;
}

.text-container ul li:last-child {
    padding-bottom: 0;
}

.text-container ul li::before {
    content: '-';
    position: absolute;
    left: -1rem;
}

.list {
    max-width: 230px;
}

.box ul {
    padding: 0;
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 1rem;
}

.box ul li {
    position: relative;
    padding-bottom: 2px;
    line-height: 1.2;
    font-weight: 100;
}

.box ul li:last-child {
    margin-bottom: 10px;
}

.box ul li::before {
    content: '';
    position: absolute;
    left: -1rem;
}

.box p {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.cont-1 .box {
    position: absolute;
    right: 0;
    width: 290px;
}

.cont-3 .box {
    position: absolute;
    right: 0;
    width: 330px;
    bottom: 0;
}

.cont-2 {
    margin-top: 20%;
}

.cont-1 {
    margin-top: 0%;
}

.cont-1 .list-container {
    position: absolute;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.cont-3 .two-column {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cont-3 .two-column .column {
    width: 100%;
}

.cont-3 .two-column .column:last-child {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
    padding-top: 3rem;
}

.cont-3 .two-column .column .icon-container {
    padding: 5rem 0;
}

.cont-3 .dimensions {
    font-size: 1rem;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    width: 100%;
}

.cont-3 .dimensions div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cont-3 .dimensions div span {
    width: 50%;
}

.cont-3 .dimensions div span:last-child {
    text-align: center;
}

.cont-3 .badge-img {
    width: 160px;
    height: 160px;
    background-color: transparent;
}

.cont-3 .badge-img img {
    width: 100%;
}

.cont-2 .list-container {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    bottom: -90%;
}

.cont-1,
.cont-2,
.cont-3 {
    position: relative;
}

.cont-3 {
    top: -5%;
}

.cont-3.text-container .title-anim {
    margin-bottom: 0;
}

.first-list-container {
    min-height: 300px;
    margin-top: 20%;
}

.first-list-container ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 300px;
    row-gap: 8rem;
}

.first-list-container ul.list-1 {
    margin-top: 0%;
}

.first-list-container ul.list-2 {
    position: relative;
    top: -30%;
}

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

.row-content .column p {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    margin: 0;
    position: relative;
    --line-width: 150px;
    --line-opacity: 1;
    --dot-scale: 1;
}

.row-content .column:first-child p::before {
    content: '';
    width: var(--line-width);
    height: 1px;
    background: #fff;
    position: absolute;
    left: -150px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: var(--line-opacity);
}

.row-content .column:first-child p::after {
    content: '';
    width: 1px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: -158px;
    top: 15px;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg) scale(var(--dot-scale));
    opacity: var(--line-opacity);
}

.row-content .column:last-child p::before {
    content: '';
    width: var(--line-width);
    height: 1px;
    background: #fff;
    position: absolute;
    right: -150px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: var(--line-opacity);
}

.row-content .column:last-child p::after {
    content: '';
    width: 1px;
    height: 20px;
    background: #fff;
    position: absolute;
    right: -158px;
    top: -13px;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg) scale(var(--dot-scale));
    opacity: var(--line-opacity);
}

.row-content .column {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 10rem;
    position: relative;
}

.first-content .column:first-child {
    position: relative;
    margin-top: 0%;
    left: 20%;
}

.first-content .column:first-child p:last-child {
    margin-top: 70%;
    left: -10%;
}

.first-content .column:last-child {
    position: relative;
    margin-top: 25%;
    left: -15%;
}

.text-content {
    position: relative;
    top: 50%;
}

.second-content {
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    justify-content: space-between;
}

.second-content .column:first-child p {
    position: relative;
    margin-top: -10%;
    left: 40%;
}

.second-content .column:last-child p:first-child {
    position: relative;
    margin-top: -80%;
}

.second-content .column:last-child p:last-child {
    position: relative;
    margin-top: 70%;
    left: 40%;
}

.third-content {
    position: absolute;
    right: 0;
    left: 0;
    justify-content: space-between;
    bottom: -90%;
}

.third-content .column:last-child p:last-child {
    position: relative;
    left: 5%;
    top: 220px;
}

.cont-4 .box {
    width: 330px;
    right: 0;
    bottom: 0;
    float: right;
}

.cont-4 .content-move {
    position: relative;
    top: 100px;
}

.first-content .column:last-child p:last-child::before {
    right: 0;
}

.first-content .column:last-child p:last-child::after {
    right: -8px;
}

.second-content .column:last-child p:first-child::before {
    right: -30px;
}

.second-content .column:last-child p:first-child::after {
    right: -36px;
    top: 14px;
    transform: rotate(-45deg);
}

/*
End Scroll Animation
*/

/* --------------------------------------- MEDIA QUERY ----------------------------------------------------- */
/* Estilos para monitores muy grandes */
@media (min-width: 1601px) {
    .mobile-only {
        display: none !important;
    }
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media screen and (min-width: 1201px) {
    .mobile-only {
        display: none !important;
    }
}

/* Dispositivos grandes (laptops y desktop) */
@media (min-width: 993px) and (max-width: 1200px) {

    .mobile-only {
        display: none !important;
    }
}

/* Dispositivos medianos (tabletas en modo horizontal) */
@media (min-width: 769px) and (max-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

/* Dispositivos medianos (tabletas en modo vertical) */
@media (min-width: 577px) and (max-width: 768px) {
    /* Estilos para tabletas */
}

/* 
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/

@media (max-width: 576px) {

    .desktop-only {
        display: none !important;
    }

    .footer .icon-rrss img {
        width: 1rem;
        margin-right: .5rem;
    }

    .footer .links a {
        font-size: .8rem;
    }

    #banner p {
        max-width: 100%;
    }

    .text-container .text {
        max-width: 100%;
    }

    .box {
        padding: 4% 2%;
    }

    .cont-1 .list {
        left: 0;
        bottom: -25%;
    }

    .cont-2 .two-column {
        flex-direction: column;
    }

    .cont-2 .two-column .column .icon-container {
        padding: 2rem 0;
    }

    .cont-2 .two-column .column:last-child {
        padding-top: 0;
        align-items: flex-start;
    }

    .cont-3 {
        top: -10%;
    }

    .row-content .column p::before {
        content: none !important;
    }

    .row-content .column p::after {
        content: none !important;
    }

    .row-content {
        flex-direction: column;
    }

    .row-content .column {
        row-gap: 5rem;
    }

    .first-content .column:first-child {
        left: 0;
    }

    .first-content .column:last-child {
        left: 0;
    }

    .first-content .column:first-child p:last-child {
        margin-top: 0;
        left: 0;
    }

    .cont-3 .box {
        bottom: -160px;
    }

    .second-content .column:last-child p:first-child {
        margin-top: 20%;
    }

    .second-content .column:last-child p:last-child {
        margin-top: 0%;
    }

    .cont-4 .content-move {
        top: -20px;
    }
}

/* --------------------------------------- END MEDIA QUERY ----------------------------------------------------- */