:root {
    --green: #bade5b;
    --darker-green: #78b834;
    --top-bottom-purple-gradient: linear-gradient(0deg, rgba(96, 26, 195, 1) 0%, rgba(65, 27, 117, 1) 100%);
    --right-left-purple-gradient: linear-gradient(270deg, rgba(96, 26, 195, 1) 0%, rgba(65, 27, 117, 1) 100%);
    --right-left-blue-gradient: linear-gradient(90deg, rgba(1, 42, 140, 1) 0%, rgba(1, 63, 208, 1) 100%);
    --dark-purple: rgba(65, 27, 117, 1);
    --purple: #601ac3;
    --light-blue: rgba(1, 63, 208, 1);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
p {
    margin-bottom: 0 !important;
}
body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0 !important;
}

.side-navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 60px 40px;
    position: fixed;
    background: rgba(72, 27, 135, 0.7);
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.73);
    backdrop-filter: blur(12px);
    border-radius: 46px 0px 46px 46px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    right: 0;
    width: 380px;
    transform: translateX(100%);
    transition: transform 350ms ease-out;
    gap: 10px;
    overflow-y: scroll;
    word-wrap: break-word;
    align-items: center;
    justify-content: center;
}

.side-navbar {
    list-style: none;
}

.side-navbar[data-visible="true"] {
    transform: translateX(0%);
}

.side-navbar a {
    text-decoration: none;
    color: white;
    transition: all 0.5s ease;
}

.side-navbar a:hover {
    color: var(--green);
}

.side-navbar img{
    width: 47px;
}

.side-navbar {
    font-size: 11px;
    text-align: center;
}

.nav-toggle {
    position: fixed;
    z-index: 9999;
    aspect-ratio: 1;
    top: 0;
    right: 0;
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    transition: color 0.5s ease;
    display: flex;
    border-bottom-left-radius: 20px;
    padding: 10px;
    transition: background 0.5s ease;
    backdrop-filter: blur(12px);
}

.nav-toggle img {
    width: 40px;
}

.transparent-black-bg {
    background: rgba(72, 27, 135, 0.7);
}

.transparent-bg {
    background-color: transparent;
}

.nav-toggle:hover {
    color: var(--green);
}

/*
.content-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}*/

section {
    /*min-height: 100vh;*/
    height: 100%;
    display: flex;

    scroll-snap-align: start;
}

section {
    background-color: white;
    flex-direction: column;
}

#inicio {
    align-items: center;
    justify-content: center;
    background-color: var(--green);
}

.section-title {
    border-bottom: 8px solid var(--green);
    height: 120px;
    background: var(--right-left-purple-gradient);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.blue-gradient {
    background: var(--right-left-blue-gradient);
}

.title-text {
    border-left: 8px solid var(--green);
}

.title-text p {
    margin-left: 10px;
    line-height: 26px;
    font-size: 28px;
}

.bold-text {
    font-weight: 700;
}

.white-color {
    color: white;
}

.green-color {
    color: var(--green);
}

.purple-color {
    color: var(--purple);
}

.section-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    background-image: url("./assets/color-shapes.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.section-content {
    height: 85%;
    color: var(--purple);
}

.content-title {
    font-size: 28px;
    text-align: center;
}

.content {
    background: var(--top-bottom-purple-gradient);
    background-image: url("./assets/white-shapes.svg"), var(--top-bottom-purple-gradient);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%, 100%;
    height: 92%;
    width: 100%;
    padding: 60px 60px;
    color: white;
}

.green-underline {
    border-bottom: 3px solid var(--green);
}

@media (orientation: portrait) {
    .content {
        background-image: url("./assets/white-shapes-vertical.svg"), var(--top-bottom-purple-gradient);
        background-size: 104%, 100%;
    }

    .section-content-container {
        background-image: url("./assets/color-shapes-vertical.svg");
        background-size: 104%;
    }
}

.content img {
    height: 40vh;
    max-width: 95vw;
}

.content .title h1 {
    font-size: 72px;
    color: var(--green);
}

.intro {
    background: var(--dark-purple);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.slider {
    background: var(--green);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transform: translateY(100%);
}

.intro-text {
    color: rgb(231, 231, 231);
    font-size: 5vw;
}

.hide {
    background: var(--dark-purple);
    overflow: hidden;
}

.hide span {
    transform: translateY(100%);
    display: inline-block;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.home-text {
    width: 400px;
    max-width: 90vw;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background: var(--dark-purple);
    border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue);
}
::-webkit-scrollbar-track {
    background: #8f8f8f;
    border-radius: 15px;
    box-shadow: inset 7px 10px 12px rgb(223, 223, 223);
}

.tooltip {
    font-family: Arial, sans-serif !important;
}

.tooltip.show {
    opacity: 1;
    overflow: hidden;
}

.tooltip-inner {
    min-width: 320px;
}

.tooltip.show img {
    width: 100%;
    height: auto;
}

.green-info {
    background-color: #829a28;
    color: white;
    text-align: left;
    padding: 20px;
}

.green-info p {
    font-size: 16px;
    margin-left: 15px;
}

.green-info h2 {
    font-weight: 400;
}

.green-info .bold {
    font-weight: 700;
}

.carousel-indicators [data-bs-target] {
    height: 8px;
    width: 8px;
    border-radius: 25px;
    border-top: 0;
    border-bottom: 0;
}

.carousel-indicators.animalistas [data-bs-target] {
    border: 1px solid #2b4d9c;
}

.carousel-indicators.animalistas {
    position: relative;
    margin-top: 14px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    position: relative;
    filter: invert(80%);
    width: 24px;
    margin-left: 10px;
    margin-right: 10px;
}
.carousel-indicators .active {
    background-color: #2b4d9c;
    border-color: #2b4d9c;
}

.carousel-indicators.water {
    bottom: -20px;
    position: relative;
}

.carousel-indicators.water .active {
    background-color: rgba(0, 0, 0, 0.363);
}

.carousel-item {
    min-height: 140px;
}

.football-image {
    width: 100%;
}

.dark-bg {
    background-color: #232531;
    height: 100%;
    color: white;
}
.blue-left-margin {
    margin-left: 30px;
    border-left: 4px solid #5cd7f2;
    height: 40px;
}
.cali-info p {
    text-align: left;
    font-size: 12px;
}

.cali-info {
    padding: 0 20px;
    gap: 20px;
}

.cali-info h1 {
    font-size: 64px;
    color: var(--darker-green);
}

.cali-info-blue {
    margin-top: 8px;
}

.cali-info-blue .left-text {
    background-color: #5cd7f2;
    font-size: 12px;
    max-width: 60%;
    padding: 10px;
    padding-left: 30px;
    text-align: left;
}

.x-icon {
    margin-left: 40px;
    color: #5cd7f2;
}

.tab button.active {
    background-color: var(--darker-green);
    color: #232531;
    box-shadow: 0px 0px 16px #78b834;
}

.tabcontent,
.tabcontent-salsa {
    display: none;
    padding: 12px 0 0;
    margin-top: 15px;
}

.tabcontent,
.tabcontent-salsa {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

.tabs {
    margin-top: 20px;
}

.right-text {
    text-align: right;
}

.left-text {
    text-align: left;
}

.tabcontent h2 {
    color: var(--darker-green);
}

.tabcontent h1 {
    font-size: 64px;
    color: var(--darker-green);
}
.tablinks {
    all: unset;
    color: var(--darker-green);
    border-radius: 12px;
    font-size: 16px;
    padding: 10px 14px;
    max-width: 90px;
    font-weight: 600;
    line-height: 16px;
    border: 2px solid var(--darker-green);
    height: 30px;
}

.blue-bg {
    background-color: #5cd7f2;
    font-size: 12px;
    padding: 10px;
    padding-left: 30px;
}

.bold-font {
    font-weight: 700;
}

.blue-color {
    color: #5cd7f2;
}

.tab {
    gap: 20px;
}

.green-border {
    border-bottom: 5px solid var(--darker-green);
    padding-bottom: 20px;
}

.sucursal-img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.modal-content {
    color: white;
    font-size: 18px;
    padding: 40px;
    border-radius: 10px;
    min-height: 380px;
}
.modal-content.red {
    background-color: #ff3153;
}

.modal-content.purple {
    background-color: #941b80;
}

.purple-color-modal {
    color: #941b80;
}

.modal-content.blue {
    background-color: #077ad8;
}

.blue-color {
    color: #077ad8;
}

.modal-content.lavander {
    background-color: #916aff;
}

.lavander-color {
    color: #916aff;
}

.modal-content.magenta {
    background-color: #e61b72;
}

.magenta-color {
    color: #e61b72;
}

.modal-content.green {
    background-color: #39a935;
}

.green-color-modal {
    color: #39a935;
}

.modal-content.yellow {
    background-color: #f8b133;
    color: #222222;
}

.yellow-color {
    color: #f8b133;
}

.water-top-info {
    line-height: 20px;
}

.water-top-info .top-title {
    font-size: 20px;
    font-weight: 700;
}

.water-top-info a {
    color: white;
}

.water-top-info .black-text {
    color: #222222;
}

.water-top-info .km {
    font-size: 32px;
    font-weight: 500;
}

.water-top-info .km-text {
    font-size: 24px;
    font-weight: 500;
}

.top-info {
    gap: 40px;
}

.right-border {
    padding-right: 20px;
    border-right: 3px solid white;
}

.right-border.black {
    border-right: 3px solid #222222;
}

.left-border {
    padding-left: 20px;
    border-left: 3px solid white;
}

.bottom-info {
    margin-top: 20px;
    font-size: 16px;
    text-align: justify;
    text-justify: inter-word;
}

.bottom-info a {
    color: white;
    font-weight: 500;
}

.bottom-title {
    font-size: 18px;
    font-weight: 500;
}

.close-button {
    background-color: white;
    border-radius: 50%;
    height: 34px;
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
    font-weight: 500;
    position: absolute;
    right: 10px;
    top: 10px;
}

.red-color {
    color: #ff3153;
}

.footer {
    background-color: #4b1b8e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2px 80px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.footer img {
    width: 150px;
}

.tab-birds button.active {
    color: white;
}

.tab-birds .tablinks {
    text-align: center;
    font-size: 14px;
    padding: 10px 16px;
}

.tab-birds .tab {
    gap: 10px;
}

.birds {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
    padding: 32px 2px;
}

.bird-info {
    position: relative;
    width: 180px;
    word-wrap: break-word;
}

.bird-info img {
    width: 180px;
    border-radius: 11px;
    padding-bottom: 45px;
}

.bird-info-text {
    position: absolute;
    font-size: 12px;
    background-color: var(--darker-green);
    width: 100%;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    padding: 10px;
    line-height: 14px;
    bottom: 0;
}

.bird-title {
    font-weight: 600;
    line-height: 14px;
}

.bird-info-hidden-text {
    display: none;
    padding-top: 5px;
    font-size: 11px;
    line-height: 11px;
}

.bird-info:hover .bird-info-hidden-text {
    display: block;
}

.modal-content.purple-gradient {
    background: linear-gradient(180deg, #503d8f 0%, #4b3685 44%, #402772 100%);
}

.modal-content.green-gradient {
    background: linear-gradient(180deg, #88b900 0%, #65911f 100%);
}

.modal-content.dark-green {
    background-color: #69951c;
}

.green-title,
.purple-gradient-title,
.yellow-title {
    background-color: #69951c;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    text-align: center;
    font-weight: 600;
    padding-right: 36px;
    box-shadow: 0px 0px 16px rgba(3, 3, 3, 0.5);
}

.purple-gradient-title {
    background: linear-gradient(90deg, #503d8f 0%, #4b3685 44%, #402772 100%);
}

.yellow-title {
    background-color: #e9f246;
    color: #77a60f;
}

.yellow-title .material-icons {
    background-color: #65911f;
    color: white;
}

.abs-close {
    position: absolute;
    right: 10px;
    top: 6px;
}

.biblio-address {
    padding: 60px 20px;
    overflow-wrap: anywhere;
}
.biblio-address .material-icons {
    font-size: 32px;
    margin-right: 20px;
}

@media (min-width: 900px) {
    .footer {
        justify-content: flex-end;
    }
}

@media (min-width: 700px) {
    .sucursal-content {
        padding: 0 25vw;
    }
}
/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*
@media (min-width: 420px) {
    #Capa_1,
    #Capa_2 {
        width: 80vw !important;
    }
}
@media (min-width: 560px) {
    #Capa_1,
    #Capa_2 {
        width: 60vw !important;
    }
}
@media (min-width: 800px) {
    #Capa_1,
    #Capa_2 {
        width: 50vw !important;
    }

    .football-image {
        width: 50%;
    }
}*/

:root {
    --time: 0.2s;
}

.wrapper {
    height: 60vh;
    overflow: hidden;
    background-color: #f5f5f5;
    perspective: 800px;

    background-color: #04071c;
}

.circular-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 90%;

    display: flex;
    align-items: center;
    justify-content: center;

    transform-style: preserve-3d;
}

.card-c {
    position: absolute;
    width: 20rem;
    height: 16rem;
    border-radius: 16px;

    backface-visibility: hidden;

    transform-style: preserve-3d;
    perspective: 800px;
}

.card-c .content-c {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: #666;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    transform-style: preserve-3d;

    transform: translateZ(2rem) rotateY(0deg);
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
    color: #fff;
}

.content-c img {
    max-width: 120vw;
}

.info {
    position: absolute;
    bottom: 2rem;
    color: #454545;
    left: 50%;
    z-index: 1000;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1.3;
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 1;
}

.info .smile {
    font-size: 1.2rem;
}

.info .name {
    font-weight: 300;
    font-size: 1.2rem;
}

.salsa {
    background-color: #04071c;
}

@media (min-width: 580px) {
    .content-c img {
        max-width: 54vw;
    }
}

.salsa-tab-top {
    /*background: radial-gradient(49.72% 5117.58% at 48.05% 60.89%, #D00000 0%, rgba(208, 0, 0, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    background-color: #d00000;
    color: white;
    font-size: 12px;
    text-align: left;
    padding: 20px;
    background: linear-gradient(1.1deg, #D00000 1.37%, rgba(208, 0, 0, 0) 99.49%);
}

.salsa-tablinks {
    font-size: 14px;
    padding: 5px 5px;
    height: 70px;
    background: #04071c;
    color: #535a86;
    border: none;
    font-weight: 600;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    min-width: 100px;
}

.salsa-tablinks.active {
    background-color: #d00000;
    color: white;
}

.tabcontent-salsa {
    margin-top: 0;
    padding: 0;
}
.tabcontent-salsa img {
    width: 100%;
}

.tabcontent-salsa p {
    color: white;
    line-height: 16px;
    font-size: 14px;
    text-align: left;
    padding: 20px;
}

.academies img {
    width: 260px;
    object-fit: cover;
    object-position: 20% 10%;
}

.acs {
    overflow: hidden;
    overflow-x: scroll;
}

.petronio-section {
    background: url("./assets/petronio-bg.svg");
    background-size: 115%;
    background-position-x: -18px;
    background-position-y: 60px;
    background-repeat: no-repeat;
    text-align: left;
    padding: 40px 100px;
    border-top: 8px solid #efbb10;
}

.petronio-content {
    color: #333333;
    line-height: 16px;
}

.petronio-content img {
    width: 100%;
}

.p-year {
    color: #efbb10;
    font-size: 36px;
    line-height: 32px;
}

.p-title {
    font-size: 14px;
}

.p-text {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 10px !important;
}

.p-bottom {
    margin-top: 20px;
}

.p-info {
    padding-left: 42px;
}

.p-section {
    border-bottom: none;
}

.emp-purple {
    background-color: #5b12c4;
    color: white;
    font-size: 16px;
    text-align: left;
    padding: 15px;
}

.emp-heading {
    text-align: center;
    font-size: 42px;
    line-height: 38px;
    padding-right: 10px;
    border-right: 5px solid white;
}

.emp-card {
    background-color: #7506f7;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: row;
    font-size: 12px;
    text-align: left;
    gap: 20px;
    box-shadow: 0px 0px 20px #000000;
}

.emp-card-img {
    width: 40%;
}

.darker-bg {
    background-color: #5b12c4;
}

.emp-card h1 {
    font-size: 20px;
}

.emp-card ul {
    margin-top: 10px;
    font-size: 10px;
}

.emp-button {
    background-color: #08d8f4;
    padding: 10px 20px;
    color: white;
    box-shadow: 0px 0px 16px rgba(3, 3, 3, 0.5);
    border-radius: 8px;
}

.emp-button img {
    margin-right: 10px;
    width: 24px;
}

.emp-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.emp-subtitle {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px !important;
}

.fut-green,
.fut-red {
    font-size: 14px;
    text-align: left;
    color: white;
}

.fut-green {
    background-color: #193f28;
}

.fut-red {
    background-color: #bb0000;
}

.padd-20 {
    padding: 20px;
}

.corredor {
    background-color: #002515;
}
.corredor-text {
    background: linear-gradient(180deg, #002515 62.86%, rgba(0, 37, 21, 0) 100%);
    font-size: 12px;
    color: white;
    text-align: left;
    padding: 20px;
    position: relative;
}

.corredor-bg-img {
    width: 100%;
    margin-top: -90px;
    z-index: 1;
}

.corredor-card {
    width: 200px;
    position: relative;
}

.corredor-card img {
    width: 200px;
}

.corredor-card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    color: white;
    font-weight: 700;
    text-align: left;
}

.card-slider {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    background: linear-gradient(0deg, #002515 75.6%, rgba(25, 88, 61, 0) 100%);
    margin-top: -100px;
    position: relative;
}

.cr-modal {
    padding: 0;
    background-color: #002515;
    text-align: left;
}

.cr-modal-content {
    padding: 20px;
    background: linear-gradient(0deg, #002515 75.6%, rgba(25, 88, 61, 0) 100%);
    position: relative;
    z-index: 2;
    margin-top: -150px;
}

.cr-modal img {
    position: relative;
    z-index: 1;
}

.cr-white-border {
    border: 3px solid #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.cr-white-border img {
    height: 24px;
}

.cr-white-border p {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
}

.cr-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
    background-color: #2ee27d;
    border-radius: 50px;
    padding: 3px;
}

.lgtbi {
    background-color: black;
    padding-bottom: 20px;
}

.lgtbi-text {
    font-size: 12px;
    text-align: left;
    color: white;
    padding: 20px;
}

body {
    padding-bottom: 80px;
}

.res-content {
    background-color: transparent;
    border: none;
    padding: 0;
}

.res-text {
    font-size: 12px;
    padding: 20px;
    text-align: left;
}

.resistencia {
    background: url("./assets/res-bg.svg");
}

.modal-backdrop.show {
    z-index: 1;
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.video-section {
    padding: 40px;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.lit-content {
    font-size: 12px;
    flex-wrap: wrap;
    text-align: left;
    gap: 20px;
}

.food-info {
    background-color: #829A28;
    color: white;
    font-size: 12px;
    text-align: left;
    padding: 20px;
}

.gastro-info {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
