/* Header Styles */
.container-custom{
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    background: black;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: orange !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: orange;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Ajuste para el contenido debajo del header fijo */
body {
    padding-top: 0;
    background: white;
    min-height: 100vh;
}

/* Container personalizado más ancho */
.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Scroll Offset para navegación con anclas */
section[id] {
    scroll-margin-top: 100px;
}

/* Animaciones de Fade-in para scroll */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-element.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* Diferentes tipos de animaciones */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.fade-in-active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.fade-in-active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* Landing Section Styles */
.land_section {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center !important;
    justify-content: center;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #46B5FF 0%, #F0F8FF 96%, #ffffff 100%);
}

.land_section-video {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    object-fit: cover;
}

.land_section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.land_section-content {
    position: relative;
    z-index: 1;
    padding: 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.land_section-content .row {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.land_section h1 {
    font-family: 'Helvetica', sans-serif;
    font-size: 9.5rem;
    font-weight: bold;
    color: white;
}

#typewriter-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.land_section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
}

.home-text{
    font-weight: bold;
}

.land_section .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    letter-spacing: 1px;
	background-color: black;
	color: white;
	border: none;
	transition: all 0.3s ease;
    border-color: white;
    border-style: solid;
}

.land_section .btn:hover {
	background-color: orange;
    border-color: orange;
}

.home_mobile {
	width: 50%;
}

.hidden-btn{
    width: 100%;
    text-align: center;
    margin-top: 40px;
    display: none;
}

.main-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-container-land {
    text-align: center;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .main-content-col{
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .land_section h1{
        font-size: 2.5rem;
    }

    .btn-container-land{
        text-align: center;
    }

    .btn-container-land{
        display: none;
    }

    .hidden-btn{
        display: block;
    }

    .land_section-content {
        padding-bottom: 3rem;
    }
}

/**********************GLOBAL STYLES**************************/


.main-title{
    margin-top: 100px;
    text-align: center;
}

.empty-line{
    height: 9px;
    background-color: white;
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}





.viewer-container {
    width: 100%;
    height: 600px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.label-renderer {
    position: absolute;
    top: 0;
    pointer-events: none;
}

.viewer-node {
    background: rgba(0, 0, 0, 0.75);
    padding: 6px 10px;
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-family: sans-serif;
    pointer-events: auto;
    cursor: pointer;
    transition: 0.2s;
}
.viewer-node:hover {
    background: rgba(255, 255, 255, 0.85);
    color: black;
}

.viewer-info-panel {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -3px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.viewer-info-panel.active {
    right: 0;
}
.viewer-info-panel .info-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.viewer-info-panel .info-desc {
    flex: 1;
    font-size: 16px;
}
.viewer-info-panel .close-btn {
    padding: 10px;
    border: none;
    background: #333;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

  





















/**********************ABOUT STYLES**************************/

.about {
    margin-bottom: 5rem;
    padding: 3rem 0;
    position: relative;
}

.aboutvita-content{
    align-items: center;
}

.aboutvita-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 57px;
}

.about-description{
    font-size: 1.5rem;
    color: #3A3A3C;
    line-height: 1.6;
    font-weight: lighter;
}

.team-image{
    text-align: center;
}

.vitateam-styles{
    width: 70%;
}

/**********************TOPICS STYLES****************************/

.topics{
    margin-top: 30px;
}

.topic-container{
    text-align: center;
}

.topic-content{
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.topic-icon{
    width: 25%;
}


.topic-title{
    font-size: 30px;
    font-family: 'Helvetica';
    font-weight: bold;
    margin: 0;
    color: #6A7C8A;
}

.topic-description{
    font-family: 'Helvetica';
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    color: #3A3A3C;
}

/**********************SERVICES STYLES**************************/

.services{
    margin-top: 110px;
}

.service-icon{
    margin-bottom: 10px;
}

.services-title{
    text-align: center;
    font-size: 50px;
    font-family: 'Helvetica';
    font-weight: bold;
    color: #6A7C8A;
    margin-bottom: 40px;
}

.service-topic{
    text-align: left;
    font-size: 25px;
    font-family: 'Helvetica';
    font-weight: bold;
    color: #6A7C8A;
}

.services-list{
    padding-left: 17px;
    margin: 0;
}

/***********************VISOR 3D STYLES**************************/

.visor3d{
    margin-top: 80px;
}

/***********************BRANDS STYLES**************************/

.brands{
    margin-top: 80px;
}

.constru-brands {
    background-color: transparent;
    overflow: hidden;
}

.brands-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brands-carousel {
    display: flex;
    /* Cambia el valor "40s" para ajustar la velocidad: menor = más rápido, mayor = más lento */
    animation: scroll 40s linear infinite;
    gap: 4rem;
    width: fit-content;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    /*filter: grayscale(100%) opacity(0.6);*/
    transition: all 0.3s ease;
}

.brand-item:hover img {
    /*filter: grayscale(100%) opacity(1);*/
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .brands-carousel {
        gap: 2rem;
    }
    
    .brand-item {
        padding: 0 1rem;
    }
    
    .brand-item img {
        max-width: 100px;
        max-height: 60px;
    }
}

/***********************PROCESS STYLES**************************/

.process{
    margin-top: 140px;
}

.process-step{
    align-items: flex-end;
    display: flex;
}

.floating-number{
    position: absolute;
}

.floating-number-02{
    position: absolute;
    right: 0;
}

.process-first{
    position: relative;
}

.process-first > .container > div {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.process-container{
    margin-top: 110px;
}

.floating-number{
    position: absolute;
    bottom: 0;
    left: 0;
}

.step-texts{
    padding-left: 14rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}

.step-texts-02{
    padding-right: 9rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
    text-align: right;
}

.process-title{
        font-size: 30px;
        font-family: 'Helvetica';
        font-weight: bold;
        color: #6A7C8A;
}

.process-descript{
    font-family: 'Helvetica';
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    color: #3A3A3C;
}

.separator-line{
    border-bottom-style: solid;
    border-color: #6A7C8A;
    border-width: 2px;
    height: fit-content;
    align-items: center;
}

/**********************GALLERY STYLES**************************/

.gallery{
    margin-top: 100px;
    margin-bottom: 40px;
}

/**********************CONTACT STYLES**************************/

#contact-us{
    margin-top: 110px;
    margin-bottom: 40px;
}




















.vita-title{
    color: white;
    font-size: 40px;
    font-family: 'Montserrat';
    font-weight: bold;
    margin-bottom: 0;
}

.vita-services-content{
    margin-top: 40px;
}

.about-card{
	background-color: white;
    padding: 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:0px 5px 10px;
}   

.card-image{
	width: 50%;
}

.card-title{
	font-size: 1.5rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: black;
}

.card-text{
    color: black;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 26px;
    transition: color 0.3s ease;
}

.about-card:hover {
    background-color: black;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 105, 177, 0.3);
    border-style: solid;
    border-color: white;
}

.about-card:hover .card-text {
    color: white;
}

.about-card:hover .card-title {
    color: white;
}

/**********************MOTO BRANDS CAROUSEL STYLES**************************/

.moto-brands-text{
    font-size: 30px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.moto-brands {
    padding: 4rem 0;
    background-color: black;
    overflow: hidden;
}

/**********************WINNER MOTORCYCLE STYLES**************************/

.first-block-winner{
    margin-top: 40px;
}

.winner-image{
    text-align: center;
}

.bmw-motorcycle{
    width: 80%;
}

.winner-info{
    color: white;
}

.winner-title{
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 2rem;
}

.winner-subtitle{
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 1.5rem;
}

.empty-right-line{
    height: 9px;
    background-color: white;
    width: 10%;
    border-radius: 5px;
    margin-bottom: 30px;
}

.winner-text{
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 1.3rem;
}

.second-block-winner{
    margin-top: 40px;
}

/**********************GALLERY WINNER STYLES**************************/


.gallery-winner{
    margin-top: 60px;
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Mantiene la proporción cuadrada */
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}



.event-card{
    padding: 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border-style: solid;
    border-color: white;
}

.event-card a {
    pointer-events: auto;
    text-decoration: none;
}   

.event-content {
    padding: 25px;
}

.event-content > div:first-child {
    margin: -25px -25px 0 -25px;
    width: calc(100% + 50px);
}

.event-image{
    width: 100%;
    display: block;
    height: auto;
    border-radius: 30px;
    padding: 12px;
}

.event-title{
	font-size: 1.5rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: white;
}

.event-info{
    align-items: center;
}

.event-text{
    color: white;
    text-align: left;
    font-size: 1rem;
    font-weight: 300;
    line-height: 26px;
    transition: color 0.3s ease;
}

.extra-text{
    font-weight: bold;
    color: white;
    text-align: left;
    font-size: 1rem;
    line-height: 26px;
    transition: color 0.3s ease;
}

.info-event{
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline !important;
}

.event-date{
    font-family: 'Montserrat';
    font-size: .8rem;
    font-weight: bold;
    text-align: right;
    color: white;
}

.gallery-insta{
    margin-top: 60px;
    margin-bottom: 40px;
}


.insta-btn-content{
    text-align: center;
    margin-top: 30px;
}

.insta-button{
    background-color: white;
    color: black;
    border-radius: 9px;
}

.insta-button:hover{
    background-color: orange;
    color: black;
}





.footer-content{
    border-top-style: solid;
    border-color: white;
    text-align: center;
    padding: 30px;
}

.legals-vita{
    color: white;
    margin-top: 20px;
    
}




























/* Chaos Section Styles */
.chaos_section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.chaos-text{
	font-family: 'Arial', sans-serif;
    color: white;
	text-align: right;
}

.chaos-title{
	font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3969B1;
    margin-bottom: 1.5rem;
	line-height: 57px;
}

.chaos-description{
	color: #3969B1;
	font-size: 1.3rem;
}

.chaos-description b {
	font-weight: 900;
}

.chaos-subtitle{
	color: #3DBFEB;
	font-size: 2rem;
	font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.chaos-bottom {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 2rem;
}

.chaos-bottom .chaos-subtitle {
	margin: 0;
}

.chaos-bottom img {
	height: 60px;
	width: auto;
}


@media screen and (max-width: 768px) {
    .chaos-title{
        text-align: center;
    }

    .chaos-description{
        text-align: left;
    }

    .chaos-bottom{
        display: block;
        text-align: center;
    }
}












.big-snail-02{
    width: 16%;
    position: absolute;
    top: 94%;
    left: 0;
    z-index: -10000;
    animation: CloudsfloatY 1s ease-in-out infinite alternate;
}

.about-title{
	font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3969B1;
    margin-bottom: 1.5rem;
    line-height: 57px;
}

.about-title-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.about-title-group img {
	height: 60px;
	width: auto;
}

.about-description-text{
    font-family: 'Arial', sans-serif;
	font-size: 1.3rem;
	text-align: center;
	color: #3969B1;
}

.about-description-text b {
	font-weight: 900;
}

.about-description-text .urgent-highlight {
	color: #3DBFEB;
} 


@media screen and (max-width: 768px) {
    .big-snail-02{
        width: 28%;
        top: -5%;
    }

    .about-title-group{
        display: block;
        text-align: center;
        margin-bottom: 40px;
        display: none;
    }

    .about-title{
        margin: 0;
    }

    .about-card{
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        margin-bottom: 30px;
    }
}


.big-snail-01{
    width: 24%;
    position: absolute;
    top: 84%;
    right: 0;
    z-index: -10000;
    animation: CloudsfloatY 1s ease-in-out infinite alternate;
}

.asesores-title{
	font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3969B1;
    margin-bottom: 1.5rem;
    line-height: 57px;
	text-align: center;
}

.inmobiliarias{
	margin-bottom: 5rem;
    position: relative;
}

.asesores-image{
	width: 100%;
}

.asesores-image-mobile{
    display: none;
}


@media screen and (max-width: 768px) {
    .big-snail-01{
        top: -14%;
    }

    .asesores-image{
        display: none;
    }

    .asesores-image-mobile{
        display: block;
        width: 100%;
    }
}



.full-card{
	margin-bottom: 5rem;
}

.full-card-content{
	padding: 50px;
    background: linear-gradient(135deg, #ABD2FD 0%, #DEC3F6 100%);
    border-radius: 70px;
}

.full-card-image{
	width: 100%;
}

.info-card{
	text-align: right;
}

.superior-logo{
	width: 50%;
}

.full-card-text{
	color: #3969B1;
    font-size: 1.25rem;
	line-height: 40px;
    font-family: 'Arial', sans-serif;
}

.full-card-text b {
	font-weight: 900;
}


@media screen and (max-width: 768px) {
    .info-card{
        text-align: center;
    }
}



/* Desarrollo Section Styles */

.acordion-content{
	align-items: center;
}

.desarrollo {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.desarrollo-image {
    width: 80%;
}

/* Accordion Custom Styles */
.accordion-item {
    border: 1px solid #E3F2FD;
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.accordion-item:hover {
    border-color: #E3F2FD;
    background: #3969B1;
}

.accordion-item:hover .accordion-button {
    background: #3969B1;
    color: white;
}

.accordion-item:hover .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
    background: white;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: none;
	width: 100%;
	text-align: left;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: #333;
    box-shadow: none;
}

.accordion-button:hover {
    background: #3969B1;
    color: white;
    transform: none;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    color: #666;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5rem;
    border-top: 1px solid #E3F2FD;
}


@media screen and (max-width: 768px) {
    .desarrollo-image-content{
        text-align: center;
        margin-bottom: 40px;
    }
}



.snail-container{
    width: 100%;
    text-align: center;
}

.snail-blue{
    width: 10%;
    animation: CloudsfloatY 1s ease-in-out infinite alternate;
    z-index: -1000;
    position: relative;
    top: 3px;
}

.banner-format{
	padding: 100px;
	background-image: url('../images/abstract_gradient03.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 5rem;
}

.banner-content{
	align-items: center;
}

.banner-title{
	font-size: 3rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: white;
}

.banner-text{
	color: white;
    font-size: 1.25rem;
    line-height: 40px;
    font-family: 'Arial', sans-serif;
}

.banner-text b {
	font-weight: 900;
}


@media screen and (max-width: 768px) {
    .snail-blue{
        width: 50%;
    }

    .banner-format{
        padding: 50px;
        text-align: center;
    }

    .banner-title{
        font-size: 2rem;
    }

    .banner-text{
        text-align: left;
    }
}



/* Footer Section Styles */
.footer-section {
    background: linear-gradient(180deg, #ffffff 0%, #46B5FF 100%);
    padding: 3rem 0;
}

.banner-btn{
	background-color: #3DBFEB;
    padding: 15px;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: none;
}

.banner-btn:hover {
    background-color: #3DBFEB;
    color: white;
    text-decoration: none;
}

.register-title{
	font-size: 3rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: #3969B1;
	text-align: center;
	line-height: 60px;
}

.register-today{
	font-size: 3rem;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	color: #3DBFEB;
	text-align: center;
	line-height: 60px;
}


.footer-logo{
	width: 30%;
}


@media screen and (max-width: 768px) {
    .register-title{
        font-size: 2rem;
        line-height: 40px;
    }

    .footer-logo{
        width: 100%;
    }
}

/**********************INSTAGRAM FEED STYLES**************************/

.vita_insta {
    padding: 4rem 0;
    background-color: black;
}

.instagram-feed {
    margin-top: 40px;
    width: 100%;
}

.instagram-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.instagram-post {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-image {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.8) 0%, rgba(138, 58, 185, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 3rem;
    color: white;
}

@media screen and (max-width: 768px) {
    .instagram-gallery {
        gap: 15px;
    }
    
    .instagram-post {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .instagram-overlay i {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .instagram-post {
        min-width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
}

@keyframes CloudsfloatY {
    0%   { transform: translateY(0); }
    100% { transform: translateY(5px); }
  }