*{font-family:'Montserrat';}
a {
    color:#FAA635;
}
body {
    overflow-x:hidden;
    position:relative;
    padding: 0;
    margin:0;
}
html {
    scroll-behavior: smooth;
}
/* ==================== HEADER STYLES ==================== */
.site-header {
    background-color: #fff;
    height: 80px;
    width: 100%;
    position: sticky;
    z-index: 1000;
    top:0;
    display:flex;
}
.footer-col img {
 background: #fff;
    border-radius: 14px;
    padding: 6px; 
      width: 100%;
    height: 80px;
    object-fit: contain;
}
ul.navigation-menu-list {
    list-style: none;
    gap: 20px;
    padding: 0;
    display:flex;
    align-items: center;
    margin:0;

    li {
        a {
            color: #484848;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;

            &:hover {
                text-decoration: underline;
            }
        }
    }
}
.menu-navigation {
     &.desktop {
        display:flex;
    }
}
.mobile {
    display:none;
}
.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#menuToggle {
    flex-direction: column;
    width: 46px;
    height: 46px;
    padding: 0;
    gap:5px;

    &.mobile {
        display:none;
    }
}
/* Logo */
.header-logo a {
    display: inline-block;
    line-height: 0;
}

.header-logo img {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

/* Right Side Container */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Phone Number */
.header-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    background: #FAA635;
    padding: 8px 18px;
    border-radius: 6px;
}

.header-phone:hover {
    opacity: 0.8;
    color:#fff;
}

/* Separator */
.header-separator {
    width: 2px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
    padding: 12px 0;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    max-width: 250px;
}

.btn-primary {
    background-color: #FAA635;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ce882b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(210, 43, 69, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #00467F;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Menu Icon (Hamburger) */
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #00467F;
    margin: 2px 0;
    transition: 0.3s;
}

/* ======== General Css ================= */
header.entry-header {
    text-align: center;
}

.entry-content {
    max-width: 1080px;
    width: 100%;
    margin:0 auto 60px;
    padding:0 20px;
    color: #2d3748;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.8;
    text-align: left;

    h2.wp-block-heading {
        font-size: 1.5rem;
        font-weight: 800;
        text-align: left;
        color: #2d3748;
        margin-bottom: 12px;
        font-family: inherit;
        margin-top: 34px;
    }
    p {
        color: #2d3748;
        font-weight: 400;
        font-size: 0.95rem;
        margin: 0;
        transition: color 0.3s ease;
        line-height: 1.8;
        text-align: left;
    }
}

h1.entry-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #2d3748;
    margin-bottom: 12px;
    font-family: inherit;
}


/* ==================== BREADCRUMB STYLES ==================== */
.breadcrumb-nav {
    padding: 12px 0;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumb-container a {
    color: #6c757d;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-container .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-container .active {
    color: #2c3e50 !important;
    font-weight: 800 !important;
}

/* Alternativa CSS para último elemento em bold */
.breadcrumb-container a:last-of-type,
.breadcrumb-container span:last-child {
    font-weight: 500;
    color: #6c757d;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1080px) {
    .menu-navigation {
        &.desktop {
            display:none;
        }
    }
    #menuToggle {
        &.mobile {
            display:flex;
        }
    }
}
@media (max-width: 992px) {
    .header-phone {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }
    
    .header-logo img {
        width: 120px;
        height: 40px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .header-phone {
        display: none;
    }
    
    .header-separator {
        display: none;
    }
    
    .btn-primary {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .breadcrumb-container {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
  .footer-certifications {
  	max-width:100% !important;
        margin-top: 18px;
    margin-bottom: -14px;
  }
  .footer-certifications img {
  	width:33% !important;
  }
    .header-container {
        padding: 0 15px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .btn-primary {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .btn-secondary {
        padding: 8px 12px;
    }
    
    .menu-icon {
        width: 20px;
    }
}
/* ==================== SIDEBAR MENU ==================== */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    pointer-events: none;
}

.sidebar-menu.active {
    visibility: visible;
    pointer-events: all;
}

/* Overlay */
.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.sidebar-menu.active .sidebar-overlay {
    opacity: 1;
}

/* Container */
.sidebar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    max-width: 85%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-menu.active .sidebar-container {
    transform: translateX(0);
}

/* Prevent body scroll */
body.sidebar-open {
    overflow: hidden;
}

/* Header */
.sidebar-header {
    padding: 25px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.sidebar-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.sidebar-logo .site-title {
    color: #484848;
    font-size: 20px;
    font-weight: 800;
}

.sidebar-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #484848;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.sidebar-close:focus {
    outline: 2px solid #484848;
    outline-offset: 2px;
}

/* Navigation */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 30px 0;
}

.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu-list li {
    margin: 0;
}

.sidebar-menu-list a {
    display: block;
    padding: 15px 30px;
    color: #484848;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu-list a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #484848;
    border-left-color: #484848;
}

.sidebar-menu-list .current-menu-item a,
.sidebar-menu-list .current_page_item a {
    background-color: rgba(0, 0, 0, 0.15);
    color: #484848;
    font-weight: 600;
    border-left-color: #484848;
}

/* Footer */
.sidebar-footer {
    padding: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.sidebar-location {
    margin-bottom: 20px;
}

.sidebar-location .location-title {
    color: #484848;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.sidebar-location .location-address {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Social Links */
.sidebar-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.sidebar-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #484848;
    transition: all 0.3s ease;
}

.sidebar-social .social-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Buttons */
.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-sidebar {
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.btn-sidebar.btn-primary {
    background-color: #FAA635;
    color: #fff;
    border: 2px solid #FAA635;
}

.btn-sidebar.btn-primary:hover {
    background-color: #ce882b;
    border-color: #ce882b;
}

.btn-sidebar.btn-outline {
    background-color: #00467F;
    color: #fff;
    border: 2px solid #fff;
}

.btn-sidebar.btn-outline:hover {
    background-color: #033863;
    color: #fff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
    .sidebar-container {
        width: 100%;
        max-width: 100%;
    }

    .sidebar-header {
        padding: 20px;
    }

    .sidebar-logo img {
        width: 120px;
    }

    .sidebar-nav {
        padding: 20px 0;
    }

    .sidebar-menu-list a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .sidebar-footer {
        padding: 20px;
    }
}
