/* 1. Main Header Container - Glassmorphism Effect */
.sales-glass-header {
    position: fixed !important;
    width: 100% !important;
    top: 0;
    left: 0;
    z-index: 999 !important;
    background: rgba(28, 42, 71) !important; /* Navy base */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
}

    .sales-header-title p {
    color: #C5A059 !important; /* Dourado */
    font-family: 'Georgia', serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    display: inline-block; /* Garante que o alinhamento fique correto */
}

/* 3. Menu Links Styling */
.sales-menu-links a {
    color: #C5A059 !important; /* Gold links */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.sales-menu-links a:hover {
    color: #FFFFFF !important; /* White on hover */
    transform: translateY(-2px);
}

/* --- 1. Unified Button Layout (Loveable Style) --- */
.sales-btn-email .elementor-button,
.sales-btn-contact .elementor-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    padding: 0 20px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important; /* Forces text to sit in the vertical center */
}

/* --- 2. THE VERTICAL FIX: Target the internal wrapper --- */
.sales-btn-email .elementor-button-content-wrapper,
.sales-btn-contact .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important; /* Perfect spacing between icon and text */
}

/* --- 3. Correct Email Button Styling --- */
.sales-btn-email .elementor-button {
    background-color: #FFFFFF !important;
    border: 1px solid #C5A059 !important;
    color: #C5A059 !important;
}

/* --- 4. Robust Icon Fix (Revised) --- */
/* We removed inline-block because it breaks flex alignment */
.sales-btn-email .elementor-button .elementor-button-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important; /* Remove margins that cause shifts */
}

.sales-btn-email .elementor-button .elementor-button-icon i,
.sales-btn-email .elementor-button .elementor-button-icon svg,
.sales-btn-email .elementor-button .elementor-button-icon svg path {
    color: #C5A059 !important;
    fill: #C5A059 !important;
    stroke: #C5A059 !important;
    width: 16px !important;
    height: 16px !important; /* Explicit height helps centering */
}

/* --- 5. Contact Button (Solid Gold) --- */
.sales-btn-contact .elementor-button {
    background-color: #C5A059 !important;
    border: 1px solid #C5A059 !important;
    color: #16243E !important;
}

/* --- 6. Hover Effects --- */
.sales-btn-email .elementor-button:hover {
    background-color: #fdfaf3 !important;
    transform: translateY(-1px);
}

.sales-btn-contact .elementor-button:hover {
    background-color: #d4b473 !important;
    transform: translateY(-1px);
}

/* --- 3. Fixing Icon Spacing (If using icons in widget) --- */
.elementor-button-icon {
    margin-right: 8px !important;
    font-size: 16px !important;
}

/* Utility: Ensure images (Logo) align perfectly */
.sales-glass-header img {
    max-height: 45px;
    width: auto;
}