.elementor-18 .elementor-element.elementor-element-2a52775{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-a70c648 */.header-section-widget * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .header-section-widget {
        --verde-oliva: #828C6C;
        --verde-claro: #B6B99A;
        --verde-escuro: #1D1E18;
        --cinza-claro: #DBDAD5;
        --off-white: #ffffff;
        font-family: 'Inter', sans-serif;
        background-color: var(--off-white);
        border-bottom: 1px solid rgba(130, 140, 108, 0.15);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .header-section-widget .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-section-widget .logo {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 400;
        color: var(--verde-escuro);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .header-section-widget .logo:hover {
        color: var(--verde-oliva);
    }

    .header-section-widget .logo-subtitle {
        font-size: 0.75rem;
        font-family: 'Inter', sans-serif;
        color: var(--verde-oliva);
        font-weight: 400;
        display: block;
        margin-top: 2px;
        letter-spacing: 0.5px;
    }

    .header-section-widget nav {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .header-section-widget .nav-link {
        color: var(--verde-escuro);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 400;
        transition: color 0.3s ease;
        position: relative;
    }

    .header-section-widget .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--verde-oliva);
        transition: width 0.3s ease;
    }

    .header-section-widget .nav-link:hover {
        color: var(--verde-oliva);
    }

    .header-section-widget .nav-link:hover::after {
        width: 100%;
    }

    .header-section-widget .header-cta {
        padding: 12px 28px;
        background-color: var(--verde-oliva);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid var(--verde-oliva);
    }

    .header-section-widget .header-cta:hover {
        background-color: var(--verde-escuro);
        border-color: var(--verde-escuro);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(130, 140, 108, 0.3);
    }

    /* Mobile Menu Toggle */
    .header-section-widget .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
    }

    .header-section-widget .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background-color: var(--verde-escuro);
        transition: all 0.3s ease;
    }

    /* Mobile Styles */
    @media (max-width: 968px) {
        .header-section-widget .header-container {
            padding: 16px 20px;
        }

        .header-section-widget nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--off-white);
            flex-direction: column;
            justify-content: center;
            padding: 32px 24px;
            gap: 32px;
            align-items: center;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
        }

        .header-section-widget nav.active {
            right: 0;
        }

        .header-section-widget .mobile-menu-toggle {
            display: flex;
            z-index: 1001;
        }

        .header-section-widget .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .header-section-widget .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .header-section-widget .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .header-section-widget .nav-link {
            font-size: 1.3rem;
            width: auto;
            padding: 12px 0;
            text-align: center;
        }

        .header-section-widget .header-cta {
            width: auto;
            text-align: center;
            margin-top: 16px;
            padding: 16px 48px;
            font-size: 1.1rem;
        }
    }/* End custom CSS */