/*
Theme Name: Hello Elementor Child
Description: Child theme of Hello Elementor for safe customizations
Author: Your Name
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
*/

/* 
=== Child Theme Custom Styles ===
Add your custom CSS below this line.
This file will preserve your customizations when the parent theme updates.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Sans-serif;
    padding-top: 95px; /* Space for fixed nav with larger logo */
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2424241A;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 0.5px solid #FFFFFF4D;
    padding: 18px 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1728px;
    margin: 0 auto;
}

/* Language Selector */
.language-selector {
    position: relative;
    width: 130px; /* Fixed width to prevent movement */
}

.language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #FFFFFF4D;
    color: white;
    padding: 8px 16px;
    border-radius: 99px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 36px; /* Fixed height */
}

.language-button:hover {
    background: #FFFFFF1A;
    border-color: #FFFFFF80;
}

.language-button .world-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #242424;
    backdrop-filter: blur(40px);
    border: 1px solid #FFFFFF4D;
    border-radius: 99px;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    z-index: 9999;
}

.language-selector .language-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    z-index: 9999;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}


.language-option .world-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Logo */
.logo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 118px;
    height: 74px;
}

/* Hamburger Menu */
.hamburger-menu {
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-menu img {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 36, 36, 0.95);
    backdrop-filter: blur(40px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Desktop: menu items at bottom */
    align-items: center;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mobile-menu-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-logo img {
    width: 118px;
    height: 74px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 10px 0;
}

.mobile-menu-links a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 20px 20px;
    display: block;
    color: #FFFDF6;
}

.mobile-menu-links a:hover {
    transform: scale(1.05);
}

/* Responsive Design for Mobile and Tablet */
@media screen and (max-width: 1024px) {
    /* Navigation Container - Change layout for mobile/tablet */
    .nav-container {
        justify-content: flex-start; /* Left align content */
        gap: 0;
    }
    
    /* Logo - Move to left side */
    .logo {
        flex-grow: 0;
        order: 1;
        margin-right: auto; /* Push other elements to the right */
    }
    
    /* Language Selector - Move to right side, before hamburger */
    .language-selector {
        order: 2;
        margin-right: 15px; /* Space between language and hamburger */
    }
    
    /* Hamburger Menu - Keep on far right */
    .hamburger-menu {
        order: 3;
    }
}

@media screen and (max-width: 768px) {
    /* Reduce logo size on smaller screens */
    .logo img {
        width: 90px;
        height: 56px;
    }
    
    /* Reduce language selector size */
    .vyda-footer .language-selector {
        width: 110px;
        justify-content: center;
    }
    
    .language-button {
        padding: 6px 12px;
        font-size: 13px;
        min-height: 32px;
    }
    
    .language-button .world-icon {
        width: 14px;
        height: 14px;
    }
    
    /* Reduce navbar padding on mobile */
    .navbar {
        padding: 15px 20px;
    }

    /* Adjust body padding */
    body {
        padding-top: 85px;
    }

    /* Mobile menu adjustments for tablet */
    .mobile-menu-content {
        justify-content: center; /* Tablet: center menu items */
    }
}

@media screen and (max-width: 480px) {
    /* Further reduce logo size on very small screens */
    .logo img {
        width: 75px;
        height: 47px;
    }    
    /* Smaller language selector */
    .vyda-footer .language-selector  {
        width: 100px;
        justify-content: center;
    }    
    .language-button {
        padding: 5px 10px;
        font-size: 12px;
        min-height: 30px;
    }    
    .language-button .world-icon {
        width: 12px;
        height: 12px;
        margin-right: 6px;
    }    
    /* Smaller hamburger menu */
    .hamburger-menu img {
        width: 20px;
        height: 20px;
    }    
    /* Reduce navbar padding further */
    .navbar {
        padding: 12px 15px;
    }    
    /* Adjust body padding */
    body {
        padding-top: 75px;
    }    
    /* Mobile dropdown adjustments */
    .language-dropdown {
        min-width: 100px;
        right: 0; /* Align to right edge on mobile */
        left: auto;
    }    
    .vyda-footer .language-selector {
        font-size: 12px;
    }    
    .language-option .world-icon {
        width: 12px;
        height: 12px;
        margin-right: 6px;
    }  
    /* Mobile menu overlay adjustments */
    .mobile-menu-content {
        justify-content: center; /* Mobile: center menu items */
    }

    .mobile-menu-logo img {
        width: 90px;
        height: 56px;
    }
    .mobile-menu-links a {
        font-size: 20px;
        padding: 16px 10px;
    }
}

/* Additional mobile-specific adjustments */
@media screen and (max-width: 360px) {
    /* Very small screens - further optimizations */
    .logo img {
        width: 65px;
        height: 40px;
    }  
    .language-selector {
        width: 90px;
        margin-right: 6px;
    }  
    .language-button {
        padding: 4px 8px;
        font-size: 11px;
        min-height: 28px;
    }    
    .navbar {
        padding: 10px 12px;
    }  
    body {
        padding-top: 68px;
    }
}
/* Accordeon */
.vyda-acordeon-realestate .e-n-accordion-item-title-text::before
    {
        content: url(/wp-content/uploads/2025/08/home-icon-vyda.svg);
        margin-right: 24px;
    }

.vyda-acordeon .elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span>svg 
    {
        fill: #1f212400!important;
    }

.vyda-acordeon-privateequity .e-n-accordion-item-title-text::before
    {
        content: url(/wp-content/uploads/2025/08/suitcase-icon-vyda.svg);
        margin-right: 24px;
    }

.vyda-acordeon-advisoryservices .e-n-accordion-item-title-text::before
    {
        content: url(/wp-content/uploads/2025/08/bulb-icon-vyda.svg);
        margin-right: 24px;
    }

.vyda-acordeon-whoweare .e-n-accordion-item-title-text::before
    {
        content: url(/wp-content/uploads/2025/09/tabler-icon-users-group.svg);
        margin-right: 16px;
    }

.vyda-acordeon-whydr .e-n-accordion-item-title-text::before
    {
        content: url(/wp-content/uploads/2025/09/tabler-icon-map-pin.svg);
        margin-right: 16px;
    }

.vyda-acordeon-whypc .e-n-accordion-item-title-text::before
    {
        content: url(/wp-content/uploads/2025/09/tabler-icon-briefcase.svg);
        margin-right: 16px;
    }

@media (max-width: 768px) {
    .vyda-acordeon-realestate .e-n-accordion-item-title-text::before,
    .vyda-acordeon-privateequity .e-n-accordion-item-title-text::before,
    .vyda-acordeon-advisoryservices .e-n-accordion-item-title-text::before {
        margin-right: 4px;
    }
}

/* Color del placeholder para el campo específico */
#form-field-full_name::placeholder, #form-field-email::placeholder, #form-field-subject::placeholder, #form-field-message::placeholder {
    color: #1E2529 !important;
    opacity: 1 !important;
}

/* Cursor pointer para botones del formulario */
.elementor-button {
    cursor: pointer !important;
}

/* Vyda Footer Styles */
.vyda-footer {
    background-color: #21292D;
    color: #ffffff;
    padding: 60px 0 30px;
    width: 100%;
    font-family: "Helvetica Neue", Sans-serif;
}

.vyda-footer * {
    font-family: "Helvetica Neue", Sans-serif !important;
}

.vyda-footer .container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 20px;
}

.vyda-footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.vyda-footer .footer-left {
    display: flex;
    flex-direction: column;
}

.vyda-footer .footer-logo {
    margin-bottom: 30px;
}

.vyda-footer .footer-logo img {
    width: 171px;
    height: 107px;
}

.vyda-footer .footer-description {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #B8C1C5 !important;
    margin-bottom: 30px !important;
    max-width: 400px;
    font-weight: 400 !important;
}

.vyda-footer .more-about-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 60px !important;
    transition: all 0.3s ease !important;
}

.vyda-footer .more-about-btn:hover {
    color: #B8C1C5;
}

.vyda-footer .more-about-btn::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.vyda-footer .more-about-btn:hover::after {
    background-color: #B8C1C5;
}

.vyda-footer .footer-right {
    display: flex;
    flex-direction: column;
}

.vyda-footer .footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    margin-bottom: 40px;
}

.vyda-footer .footer-nav ul,
.vyda-footer .footer-nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vyda-footer .footer-nav ul {
    display: flex;
    gap: 50px;
}

.vyda-footer .footer-nav a {
    color: #B8C1C5 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    transition: color 0.3s ease !important;
}

.vyda-footer .footer-nav a:hover {
    color: #ffffff !important;
}

.vyda-footer .footer-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vyda-footer .footer-section h3 {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.vyda-footer .footer-section p {
    color: #B8C1C5 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
    font-weight: 400 !important;
}

.vyda-footer .footer-section:last-child p {
    max-width: 250px !important;
    word-wrap: break-word !important;
}

.vyda-footer .footer-section p:last-child {
    margin-bottom: 0;
}

.vyda-footer .social-icons {
    display: flex;
    gap: 15px;
}

.vyda-footer .social-icon {
    width: 45px;
    height: 45px;
    background-color: #B8C1C5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vyda-footer .social-icon:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.vyda-footer .social-icon svg {
    width: 20px;
    height: 20px;
    fill: #21292D;
}

.vyda-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #4A5559;
}

.vyda-footer .copyright {
    color: #B8C1C5 !important;
    font-size: 14px !important;
}

.vyda-footer .copyright p {
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

.vyda-footer .language-selector-footer {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.vyda-footer .language-selector-footer span,
.vyda-footer .language-selector-footer a {
    color: #B8C1C5 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
    font-weight: 400 !important;
    text-decoration: none !important;
}

.vyda-footer .language-selector-footer span.active,
.vyda-footer .language-selector-footer a.active {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.vyda-footer .language-selector-footer span:hover,
.vyda-footer .language-selector-footer a:hover {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .vyda-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vyda-footer .footer-nav {
        justify-content: flex-start;
        gap: 30px;
    }

    .vyda-footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .vyda-footer .social-icons {
        justify-content: start;
    }

    .vyda-footer .language-selector-footer {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .vyda-footer .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .vyda-footer .footer-sections {
        gap: 30px;
    }
}

/* Focus Item Styles */
   .focus-areas {
   display: flex;
   flex-direction: column;
   gap: 48px;
   }
   .focus-item {
   display: grid;
   grid-template-columns: 350px 1fr;
   gap: 64px;
   padding: 10px;
   border-radius: 8px;
   transition: all 0.3s ease;
   align-items: start;
   }
   .focus-item-2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: start;
}
   .focus-item:hover .focus-icon svg {
   stroke: #FFFDF6;
   }
   .focus-item:hover .focus-title,
   .focus-item:hover .focus-description {
   color: #FFFDF6;
   }
   .focus-item-2:hover .focus-icon svg {
   stroke: #FFFDF6;
   }
   .focus-item-2:hover .focus-title-2,
   .focus-item-2:hover .focus-description-2 {
   color: #FFFDF6;
   }
   .focus-icon {
   flex-shrink: 0;
   width: 64px;
   height: 64px;
   display: flex;
   align-items: center;
   justify-content: center;
   }
   .focus-icon svg {
   width: 64px;
   height: 64px;
   transition: stroke 0.3s ease;
   stroke: #999D9E;
   }
   .focus-title-container {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 16px;
   }
   .focus-content {
   margin-left: 0;
   align-self: end;
   }
   .focus-title {
   font-family: "Newsreader", sans-serif;
   font-size: 40px;
   font-weight: 300;
   margin-bottom: 0;
   color: #999D9E;
   transition: color 0.3s ease;
   }
   .focus-title-2 {
   font-family: "Newsreader", sans-serif;
   font-size: 48px;
   font-weight: 300;
   margin-bottom: 0;
   color: #999D9E;
   transition: color 0.3s ease;
   }
   .focus-description {
   font-family: "Helvetica Neue", sans-serif;
   font-weight: 300;
   font-style:normal;
   font-size: 24px;
   line-height: 120%;
   color: #999D9E;
   transition: color 0.3s ease;
   }
   .focus-description-2 {
   font-family: "Helvetica Neue", sans-serif;
   font-weight: 300;
   font-style:normal;
   font-size: 32px;
   line-height: 130%;
   color: #999D9E;
   transition: color 0.3s ease;
   }
   @media (max-width: 768px) {
   .focus-areas {
   gap: 8px;
   }
   .focus-item {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   }
   .focus-title-container {
   gap: 10px;
   }
   .focus-content {
   margin-left: 0;
   align-self: start;
   }
   .focus-icon {
   width: 48px;
   height: 48px;
   }
   .focus-icon svg {
   width: 48px;
   height: 48px;
   }
   .focus-title {
   font-size: 40px;
   margin-bottom: 0;
   }
   .focus-title-2 {
   font-size: 32px;
   margin-bottom: 0;
   }
   .focus-description {
   font-size: 24px;
   } 
   .focus-description-2 {
   font-size: 24px;
   } 
   }
   @media (max-width: 480px) {
   .focus-title {
   font-size: 32px;
   }
   .focus-description {
   font-size: 20px;
   line-height: 120%;
   }
   }