:root {
    --color-primario: #6396FF;
    --color-blanco: #FFFFFF;
    --color-negro: #000000;
}

@font-face {
    font-family: 'TTRegular';
    src: url('../fonts/TTRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TTMedium';
    src: url('../fonts/TTMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TTBold';
    src: url('../fonts/TTBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-blanco);
    color: var(--color-negro);
    font-family: 'TTRegular', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TTBold', sans-serif;
    margin-top: 0;
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
* {
    scrollbar-width:thin;
    scrollbar-color: var(--color-primario) var(--color-blanco);
}
*::-webkit-scrollbar {
    width: 15px;
}

*::-webkit-scrollbar-track {
    background: var(--color-blanco);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-primario);
    border-radius: 0px;
    border: 0px solid var(--color-blanco);
}

.reveal-home {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-home.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    display: block;
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--color-blanco);
    font-family: 'TTBold', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    position: relative;
}

nav a:hover {
    color: var(--color-primario);
}

nav a.active {
    color: var(--color-primario) !important;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primario);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(99, 150, 255, 0.5);
}

nav a img {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

nav a:hover img {
    transform: scale(1.1);
}

nav ul li:last-child a.active::after {
    display: none;
}
nav ul li:last-child {
    margin-left: 10px;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    height: 30px;
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--color-blanco);
    transition: all 0.3s ease;
    border-radius: 2px;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.8rem 5%;
}

header.scrolled nav a {
    color: var(--color-negro);
    text-shadow: none;
}

header.scrolled nav a:hover,
header.scrolled nav a.active {
    color: var(--color-primario);
}

header.scrolled nav ul li:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.2); 
}

header.scrolled .logo img {
    filter: invert(1); 
}

header.scrolled nav a img {
    filter: brightness(0); 
}

header.scrolled .menu-toggle .bar {
    background-color: var(--color-negro);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--color-blanco);
    margin-top: 0; 
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.5s ease-out;
}

.hero-content img {
    width: 60%;
    max-width: 673px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-primario);
    color: var(--color-blanco);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'TTBold', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 150, 255, 0.4);
}

.btn-primary:hover {
    background-color: #4a7ecc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 150, 255, 0.6);
}

.intro {
    padding: 5rem 10%;
    text-align: center;
    background-color: var(--color-blanco);
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    background-color: var(--color-negro);
    color: var(--color-blanco);
    padding: 50px 5% 20px;
    display: flex;
    flex-direction: column;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Línea divisoria sutil */
    padding-bottom: 30px;
    margin-bottom: 20px;
}


.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px; 
}

.social-links a {
    color: var(--color-blanco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    transition: all 0.3s ease;
}

.social-links svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    color: var(--color-primario);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-copy {
    text-align: center;
}

.footer-copy p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: flex; 
        z-index: 2000;
        margin-left: auto;
    }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--color-negro);}
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--color-negro);}

    nav {
        position: absolute;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-blanco);
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    nav.active {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 0;
    }

    nav ul li {
        margin: 20px 0;
        filter: none;
        opacity: 1;
        width: 100%;
        text-align: center;
    }

    nav a {
        color: var(--color-negro);
        font-size: 1.2rem;
        text-shadow: none;
        
        display: inline-flex;
        justify-content: center;
    }

    nav a.active::after {
        bottom: -4px;
    }

    nav a img {
        filter: brightness(0);
    }
    
    nav a:hover img {
        transform: scale(1.1);
    }

    nav ul li:last-child {
        border-left: none !important;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 40px;
        margin-left: 0;
        display: flex;
        justify-content: center;
        width: 50%;
        margin: 0 auto;
        filter: none;
    }

    .hero-content img {
        width: 90%;
        max-width: 350px;
        margin-bottom: 30px;
    }
}





.hero-internal {
    position: relative;
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-blanco);
    margin-top: 0;
    background-color: #1a1a1a; 
}

.hero-internal .overlay {

    background: linear-gradient(to top, hsla(0, 0%, 0%, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-internal-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

.hero-internal-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-internal-content p {
    font-size: 1.3rem;
    font-family: 'TTMedium', sans-serif;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.section-padding {
    padding: 80px 10%;
}

.container-text {
    max-width: 800px;
    margin: 0 auto; 
}

.about-origin {
    background-color: var(--color-blanco);
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.about-origin h2 {
    font-size: 2.5rem;
    color: var(--color-primario);
    margin-bottom: 30px;
}

.about-origin p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-audience {
    background-color: #f8faff;
    border-top: 1px solid #eef2f9;
}

.about-audience h2 {
    font-size: 2.5rem;
    color: var(--color-negro);
    margin-bottom: 30px;
    text-align: center;
}

.about-audience p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify; 
}

.highlight-box {
    background-color: var(--color-blanco);
    border-left: 5px solid var(--color-primario);
    padding: 30px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.highlight-box p {
    margin: 0;
    font-family: 'TTMedium', sans-serif;
    color: var(--color-negro);
    font-style: italic;
}
.cta-section {
    background-color: var(--color-primario);
    color: var(--color-blanco);
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: var(--color-blanco);
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: var(--color-blanco);
    color: var(--color-primario);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-internal {
        height: 40vh;
    }
    
    .hero-internal-content h1 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 50px 5%;
    }
    
    .about-audience p {
        text-align: left;
    }
}


.hero-inversion {
    height: 50vh;
    background-position: center top;
}
.lead-text {
    font-size: 1.3rem !important;
    color: var(--color-negro) !important;
    font-weight: 500;
}

.investment-intro h2 {
    font-size: 2.5rem;
    color: var(--color-primario);
    margin-bottom: 30px;
    text-align: center;
}

.investment-intro p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #555;
    font-size: 1.1rem;
}

.benefits-section {
    background-color: #f4f7fc;
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-negro);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--color-blanco);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--color-primario);
    box-shadow: 0 15px 40px rgba(99, 150, 255, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-negro);
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .investment-intro h2 {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.1rem !important;
    }
}


.full-width-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.full-width-banner img {
    width: 100%;
    height: 80vh; 
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9); 
    transition: transform 0.5s ease;
}

.full-width-banner:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .full-width-banner img {
        height: 60vh;
    }
}

.contact-section {
    background-position: center;
    background-size: cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info h2 {
    font-size: 2.2rem;
    color: var(--color-primario);
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    margin-top: 0px;
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.detail-item a {
    color: var(--color-negro);
    text-decoration: none;
}

.detail-item a:hover{
    color: var(--color-primario);
}

.detail-item .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.form-wrapper {
    background-color: var(--color-blanco);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-family: 'TTBold', sans-serif;
    color: var(--color-negro);
    font-size: 0.95rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'TTRegular', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--color-primario);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 150, 255, 0.1);
}

.booking-form textarea {
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.bottom-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.bottom-banner img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .bottom-banner img {
        height: 200px;
    }
}
.grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.text-col h2 {
    font-size: 2.5rem;
    color: var(--color-negro);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-col p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}
.tag {
    display: inline-block;
    background-color: #eff4ff;
    color: var(--color-primario);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'TTBold', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.img-col{
    height: 100%;
}

.img-col img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    object-fit: cover;
}

.img-col img:hover {
    transform: scale(1.02);
}
.btn-secondary {
    display: inline-block;
    border: 2px solid var(--color-primario);
    color: var(--color-primario);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'TTBold', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-primario);
    color: var(--color-blanco);
}
.home-investment {
    background-color: #f9faff;
}
.home-booking {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--color-blanco);
    background-color: #111;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.booking-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.booking-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-blanco);
}

.booking-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .grid-home {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .reverse-mobile {
        display: flex;
        flex-direction: column;
    }

    .text-col h2 {
        font-size: 2rem;
    }
    
    .booking-content h2 {
        font-size: 2.2rem;
    }
}