header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 100;
    padding-left: 0px;
}



header{
    backdrop-filter: blur(5px);
    background-color: var(--header-background);
    color: var(--header-text);
    padding: 10px;
    padding-left: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0px;
    position: fixed;
    height: 60px;
    padding-left: 20px;
}


header h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0px;
    display: inline-flex;
}

header button{    
    padding: 0px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    left:0px;
    display: flex;
    align-items: center;
    gap: 1rem;;
}

.logo-container {
    height: 110px;
    position: relative;
    margin-bottom: -50%;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.logo {
    height: 100%;
    width: auto;
}


.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;  
    align-content: center;
}

.nav-menu a:hover {
    color: #007bff;
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    background: none;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
        color: var(--primary-color);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }
}



.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.whatsapp-btn i {
    font-size: 1.2em;
}




@media (max-width: 1172px) {

    .whatsapp-btn {
        display: none;
    }

    .brand h3{
        visibility: hidden;
        display: none;
    }
}
@media (max-width: 768px) {

    .whatsapp-btn {
        display: block;
        width: 100%;
        justify-content: center;
    }

    
    .brand h3{
        visibility: visible;
        display: block;
    }
    
    header h3{
        font-size: 20px;
    }

    
    .logo-container {
        height: 55px;
        position: relative;
        transform: translate(0px, -14px);
        box-shadow: none;
        padding: 0px;
    }

    .logo {
        height: 100%;
        width: auto;
    }


}

/* Dropdown Menu Styles */
.dropdown-container {
    position: relative;  
    padding-top: 3px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 101;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

/* Desktop Hover Behavior */
@media (min-width: 769px) {
    .dropdown-container:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-container:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Mobile Click Behavior */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu a {
        padding-left: 25px;
    }
    
    .dropdown-container.open .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-container.open .dropdown-toggle i {
        transform: rotate(180deg);
    }
}


@media (max-width: 320px) {
    header h3{
        visibility: hidden;
        display: none !important;
    }
    
}