/* ==================== Seção Moderna de Produtos ==================== */
.modern-products-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    overflow: hidden;
}

.modern-products-section::before {
    display: none;
}

.modern-products-section .container {
    position: relative;
    z-index: 1;
}

/* Header da Seção */
.modern-section-header {
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.modern-section-header.text-center {
    align-items: center;
}

.modern-section-header.text-left {
    align-items: flex-start;
}

.modern-section-title.text-left {
    text-align: left;
}

.modern-section-title.text-left::after {
    display: none;
}

.modern-section-sub-title {
    display: inline-block;
    font-size: 11px;
    color: #efb370;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.modern-section-sub-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('../img/bolinha.png');
    background-size: 40px 40px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    display: block !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}

.modern-section-title {
    color: #0054a0;
    font-size: 36px;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    margin: 0;
    position: relative;
    display: inline-block;
    border-bottom: none !important;
}

.modern-section-title::after {
    display: none !important;
}

/* Cards Modernos */
.modern-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 84, 160, 0.08);
    transition: box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 84, 160, 0.05);
}

.modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #f48000 !important;
    z-index: 3;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    scale: 1 !important;
}

.modern-product-card::before,
.modern-product-card:hover::before {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100% !important;
}

.modern-product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 84, 160, 0.15);
    transform: none !important;
}

.modern-card-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: block;
    z-index: 2;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.modern-card-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.modern-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: relative !important;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
    transition: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.modern-product-card:hover .modern-card-image img {
    transform: none !important;
    scale: 1 !important;
}

.modern-card-image .readmore {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    position: relative !important;
    line-height: 0 !important;
}

.modern-card-image .readmore::after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.modern-card-image .readmore:hover {
    padding: 0 !important;
}

.modern-card-content {
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
}

.modern-card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: "Ubuntu", sans-serif;
    text-align: left;
}

.modern-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0054a0;
    margin: 0 0 12px 0;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
    text-align: left;
}

.modern-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f48000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
    margin-top: auto;
}

.modern-card-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.modern-card-link:hover i {
    transform: translateX(3px);
}

.modern-card-link:hover {
    color: #f48000;
    text-decoration: none;
}

/* Botão CTA */
.modern-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0054a0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: "Ubuntu", sans-serif;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modern-cta-button:hover {
    background: transparent !important;
    border-color: #0054a0 !important;
    color: #0054a0 !important;
    text-decoration: none;
    transform: none !important;
}

.modern-cta-button:hover::before,
.modern-cta-button:hover::after {
    display: none !important;
    background: none !important;
}

/* Seção Sobre Nós - Imagem com bordas */
.about-image-wrapper {
    position: relative;
    padding: 8px;
    background: #0054a0;
    border-radius: 20px;
    display: inline-block;
    width: 100%;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #f48000;
    border-radius: 16px;
    z-index: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    z-index: 1;
    display: block;
    width: 100%;
}

.experience {
    position: absolute !important;
    bottom: -20px !important;
    right: -20px !important;
    top: auto !important;
    background: #0054a0 !important;
    padding: 20px 25px !important;
    border-radius: 15px !important;
    z-index: 10 !important;
    box-shadow: 0 8px 25px rgba(0, 84, 160, 0.3);
    text-align: center;
    min-width: 140px;
}

.experience .year {
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: 2.2rem !important;
    letter-spacing: normal !important;
    line-height: 1 !important;
    margin: 0 !important;
    display: block !important;
    font-family: "Roboto", sans-serif !important;
    margin-bottom: 8px !important;
}

.experience .caption {
    color: #ffffff !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    font-size: 0.7rem !important;
    margin: 8px 0 0 0 !important;
    display: block !important;
    font-family: "Roboto", sans-serif !important;
    font-weight: 600 !important;
    opacity: 0.95;
}

.experience span {
    display: block !important;
}

/* Seção Fale Conosco - Design Full Width */
.contact-section-full {
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%);
    padding: 45px 0;
    width: 100%;
}

.contact-title-full {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: "Roboto", sans-serif;
}

.contact-phone-full {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-phone-full i {
    color: #f48000;
    font-size: 18px;
}

.contact-phone-full a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone-full a:hover {
    color: #f48000;
    text-decoration: none;
}

.contact-text-full {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
    font-family: "Roboto", sans-serif;
    opacity: 0.95;
    line-height: 1.5;
}

.contact-buttons-full {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.contact-btn-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.contact-btn-whatsapp-full {
    background: #25D366;
    color: #ffffff;
}

.contact-btn-whatsapp-full:hover {
    background: #20BA5A;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

.contact-btn-email-full {
    background: #ffffff;
    color: #0054a0;
}

.contact-btn-email-full:hover {
    background: #f8f8f8;
    color: #0054a0;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-section-full {
        padding: 35px 0;
    }

    .contact-title-full {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-phone-full {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-text-full {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-buttons-full {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Seção Parceiros - Design Completamente Novo */
.brands-area-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.brands-area-new::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 84, 160, 0.1) 0%, rgba(239, 179, 112, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.brands-area-new::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(239, 179, 112, 0.08) 0%, rgba(0, 84, 160, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.brands-area-new .container {
    position: relative;
    z-index: 1;
}

.brands-area-new .modern-section-header {
    margin-bottom: 50px;
}

/* Carrossel Customizado - Parceiros */
.custom-carousel-wrapper {
    position: relative;
    padding: 20px 80px 40px 80px;
}

.custom-carousel-container {
    position: relative;
    width: 100%;
    overflow: visible !important;
}

.custom-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
    padding: 10px 0;
}

.custom-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.custom-carousel-track .brand-item-new {
    flex: 0 0 auto;
    width: calc((100% - 80px) / 5);
    min-width: 180px;
}

@media (max-width: 1200px) {
    .custom-carousel-track .brand-item-new {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 992px) {
    .custom-carousel-track .brand-item-new {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 768px) {
    .custom-carousel-wrapper {
        padding: 20px 40px 40px 40px;
    }
    
    .custom-carousel-track .brand-item-new {
        width: calc((100% - 30px) / 3);
    }
}

@media (max-width: 480px) {
    .custom-carousel-wrapper {
        padding: 20px 20px 40px 20px;
    }
    
    .custom-carousel-track .brand-item-new {
        width: calc((100% - 20px) / 2);
        min-width: 150px;
    }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #ffffff !important;
    color: #0054a0 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #0054a0;
    box-shadow: 0 4px 15px rgba(0, 84, 160, 0.2);
    cursor: pointer !important;
    z-index: 100 !important;
    padding: 0;
    outline: none;
    pointer-events: auto !important;
    user-select: none;
}

.carousel-nav i {
    display: block !important;
    font-size: 18px;
    line-height: 1;
    pointer-events: none !important;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%) !important;
    color: #ffffff !important;
    border-color: #0054a0;
    box-shadow: 0 6px 20px rgba(0, 84, 160, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover i {
    color: #ffffff !important;
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -70px;
}

.carousel-next {
    right: -70px;
}

@media (max-width: 992px) {
    .carousel-prev {
        left: -50px;
    }
    
    .carousel-next {
        right: -50px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .carousel-prev {
        left: -40px;
    }
    
    .carousel-next {
        right: -40px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

.brand-item-new {
    padding: 25px 20px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 140px;
    background: #ffffff !important;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 84, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0054a0 0%, #efb370 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.brand-item-new:hover {
    box-shadow: 0 8px 25px rgba(0, 84, 160, 0.15) !important;
    background: #ffffff !important;
    border-color: rgba(0, 84, 160, 0.2);
}

.brand-item-new:hover::before {
    transform: scaleX(1);
}

.brand-item-new img {
    width: 300px !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0.85 !important;
    filter: grayscale(20%) !important;
    transition: all 0.4s ease;
    display: block !important;
    visibility: visible !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}

.brand-item-new:hover img {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 916px) {
    .modern-products-section::before {
        top: -350px;
    }
}

@media (max-width: 768px) {
    .modern-section-title {
        font-size: 32px;
    }
    
    .modern-product-card {
        margin-bottom: 30px;
    }
    
    .modern-cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .modern-products-section::before {
        width: 300px;
        height: 300px;
        top: -200px;
        right: -100px;
    }
}

@media (max-width: 600px) {
    .modern-products-section::before {
        top: -250px;
    }
}

/* ==================== Seção de Contato da Equipe - Design Moderno ==================== */
.team-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.team-contact-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(239, 179, 112, 0.08) 0%, rgba(0, 84, 160, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.team-contact-section .container {
    position: relative;
    z-index: 1;
}

.team-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(0, 84, 160, 0.08);
    border: 1px solid rgba(0, 84, 160, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0054a0 0%, #f48000 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-contact-card:hover {
    box-shadow: 0 15px 40px rgba(0, 84, 160, 0.15);
    border-color: rgba(0, 84, 160, 0.2);
}

.team-contact-card:hover::before {
    transform: scaleX(1);
}

.team-card-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.team-card-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #f48000 0%, #efb370 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-contact-card:hover .team-card-avatar {
    transform: scale(1.1);
}

.team-contact-card:hover .team-card-avatar::after {
    opacity: 1;
}

.team-card-avatar i {
    font-size: 42px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.team-contact-card:hover .team-card-avatar i {
    transform: scale(1.1);
}

.team-card-content {
    width: 100%;
}

.team-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #0054a0;
    margin: 0 0 18px 0;
    font-family: "Roboto", sans-serif;
    transition: color 0.3s ease;
}

.team-contact-card:hover .team-card-name {
    color: #f48000;
}

.team-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: "Ubuntu", sans-serif;
    border: 1px solid transparent;
}

.team-card-link i {
    font-size: 16px;
    color: #0054a0;
    transition: all 0.3s ease;
}

.team-card-link:hover {
    background: #0054a0;
    color: #ffffff;
    text-decoration: none;
    border-color: #0054a0;
}

.team-card-link:hover i {
    color: #ffffff;
}

.team-card-link[href*="whatsapp"]:hover {
    background: #25D366;
    border-color: #25D366;
}

.team-card-link[href*="whatsapp"] i {
    color: #25D366;
}

.team-card-link[href*="whatsapp"]:hover i {
    color: #ffffff;
}

.team-card-link span {
    flex: 1;
    text-align: left;
}

@media (max-width: 992px) {
    .team-contact-section {
        padding: 60px 0;
    }

    .team-contact-card {
        padding: 25px 20px;
    }

    .team-card-avatar {
        width: 80px;
        height: 80px;
    }

    .team-card-avatar i {
        font-size: 40px;
    }

    .team-card-name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .team-contact-section {
        padding: 50px 0;
    }

    .team-contact-card {
        padding: 20px 15px;
    }

    .team-card-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ==================== Footer Moderno ==================== */
.footer-modern {
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%);
    padding: 60px 0 30px 0;
    color: #ffffff;
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-main-content {
    margin-bottom: 40px;
}

.footer-logo-section {
    height: 100%;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}

.footer-title {
    color: #f48000;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-family: "Ubuntu", sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #f48000;
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list li i {
    color: #f48000;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    font-family: "Ubuntu", sans-serif;
    text-decoration: none;
}

.footer-contact-list li a:hover {
    color: #f48000;
    text-decoration: none;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}

.footer-bloomin-link {
    display: inline-block;
}

.footer-bloomin-link img {
    max-height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bloomin-link:hover img {
    opacity: 1;
}

@media (max-width: 992px) {
    .footer-modern {
        padding: 50px 0 25px 0;
    }

    .footer-main-content {
        margin-bottom: 30px;
    }

    .footer-logo img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 0 20px 0;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-bottom-modern {
        text-align: center;
    }

    .footer-bottom-modern .text-right {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* ==================== Banner Moderno - Sobre Nós ==================== */
.about-banner-area {
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-banner-area::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.about-banner-inner {
    position: relative;
    z-index: 1;
}

.about-banner-content h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

.about-page-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
}

.about-page-link a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

@media (max-width: 768px) {
    .about-banner-area {
        padding: 60px 0;
    }
    
    .about-banner-content h1 {
        font-size: 32px;
    }
}

/* ==================== Seção About Moderna ==================== */
.about-section-modern {
    padding: 60px 0;
    background: #ffffff;
}

.about-image-wrapper-modern {
    position: relative;
    padding: 8px;
    background: #0054a0;
    border-radius: 20px;
    display: inline-block;
    width: 100%;
}

.about-image-wrapper-modern::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #f48000;
    border-radius: 16px;
    z-index: 0;
}

.about-image-modern {
    position: relative;
    border-radius: 12px;
    z-index: 1;
    display: block;
    width: 100%;
}

/* ==================== Seção Missão, Visão e Valores ==================== */
.mvv-section-modern {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    overflow: hidden;
}

.mvv-section-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 84, 160, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.mvv-section-modern .container {
    position: relative;
    z-index: 1;
}

.mvv-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 84, 160, 0.08);
    transition: box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 84, 160, 0.05);
}

.mvv-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #f48000;
    z-index: 3;
}

.mvv-card-modern:hover {
    box-shadow: 0 15px 40px rgba(0, 84, 160, 0.15);
}

.mvv-card-content-modern {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.mvv-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.mvv-card-modern:hover .mvv-card-icon {
    transform: scale(1.1);
}

.mvv-card-icon i {
    font-size: 32px;
    color: #ffffff;
}

.mvv-card-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: #0054a0;
    margin: 0 0 15px 0;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
    text-align: center;
}

.mvv-card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}

@media (max-width: 768px) {
    .mvv-section-modern {
        padding: 60px 0;
    }

    .mvv-card-content-modern {
        padding: 25px 20px;
    }
}

/* ==================== Seção Contato - Sobre Nós ==================== */
.about-contact-section-full {
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%);
    padding: 45px 0;
    width: 100%;
}

.about-contact-title-full {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: "Roboto", sans-serif;
}

.about-contact-phone-full {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-contact-phone-full i {
    color: #f48000;
    font-size: 18px;
}

.about-contact-phone-full a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-contact-phone-full a:hover {
    color: #f48000;
    text-decoration: none;
}

.about-contact-text-full {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
    font-family: "Roboto", sans-serif;
    opacity: 0.95;
    line-height: 1.5;
}

.about-contact-buttons-full {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.about-contact-btn-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.about-contact-btn-whatsapp-full {
    background: #25D366;
    color: #ffffff;
}

.about-contact-btn-whatsapp-full:hover {
    background: #20BA5A;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

.about-contact-btn-email-full {
    background: #ffffff;
    color: #0054a0;
}

.about-contact-btn-email-full:hover {
    background: #f8f8f8;
    color: #0054a0;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-contact-section-full {
        padding: 35px 0;
    }

    .about-contact-title-full {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-contact-phone-full {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-contact-text-full {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-contact-buttons-full {
        justify-content: center;
        margin-top: 20px;
    }
}

/* ==================== Seção Sobre Produtos ==================== */
.about-products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.about-products-content {
    text-align: center;
}

.about-products-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-products-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: "Ubuntu", sans-serif;
}

.about-products-text p:last-child {
    margin-bottom: 0;
}

/* Estilos para listas dentro da descrição */
.descricao-completa,
.about-products-text {
    text-align: left;
}

/* Remove marcadores padrão de todas as listas */
.descricao-completa ul,
.descricao-completa ol,
.about-products-text ul,
.about-products-text ol,
.descricao-completa ul li,
.descricao-completa ol li,
.about-products-text ul li,
.about-products-text ol li {
    list-style: none !important;
}

.descricao-completa ul li::marker,
.descricao-completa ol li::marker,
.about-products-text ul li::marker,
.about-products-text ol li::marker {
    display: none !important;
    content: none !important;
}

.descricao-completa ul,
.about-products-text ul {
    list-style: none !important;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.descricao-completa ul li,
.about-products-text ul li {
    list-style: none !important;
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    text-align: left;
}

.descricao-completa ul li::before,
.about-products-text ul li::before {
    display: none;
}

.descricao-completa ul li::marker,
.about-products-text ul li::marker {
    display: none;
}

.descricao-completa ol,
.about-products-text ol {
    list-style: none !important;
    padding-left: 0;
    margin: 20px 0;
    text-align: left;
}

.descricao-completa ol li,
.about-products-text ol li {
    list-style: none !important;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    text-align: left;
}

.descricao-completa ol li::marker,
.about-products-text ol li::marker {
    display: none;
}

.descricao-completa p,
.about-products-text p {
    text-align: left;
}

@media (max-width: 768px) {
    .about-products-section {
        padding: 80px 0;
    }
    
    .about-products-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .descricao-completa ul li,
    .about-products-text ul li,
    .descricao-completa ol li,
    .about-products-text ol li {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ==================== Seção Detalhes do Produto ==================== */
.modern-product-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.modern-product-detail-section.product-detail-main {
    padding: 120px 0;
}

.product-detail-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 84, 160, 0.15);
    background: linear-gradient(135deg, #0054a0 0%, #f48000 100%);
    padding: 4px;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
}

.product-detail-image-wrapper::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #ffffff;
    border-radius: 16px;
    z-index: 0;
    display: block;
}

.product-detail-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    background: #ffffff;
}

.product-detail-content {
    padding-left: 30px;
    margin-top: 40px;
}

.product-detail-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Ubuntu", sans-serif;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.product-detail-description p {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.product-detail-description p:first-child {
    margin-top: 0;
}

.product-detail-description p:last-child {
    margin-bottom: 0;
}

.product-detail-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.product-video-wrapper {
    margin-top: 40px;
}

.product-video-wrapper iframe {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 84, 160, 0.15);
}

@media (max-width: 992px) {
    .product-detail-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .modern-product-detail-section {
        padding: 60px 0;
    }
    
    .product-detail-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .product-detail-buttons {
        flex-direction: column;
    }
    
    .product-detail-buttons .modern-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ==================== Cards de Catálogo ==================== */
.catalog-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 84, 160, 0.08) !important;
    transition: box-shadow 0.4s ease !important;
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    border: 1px solid rgba(0, 84, 160, 0.05) !important;
    padding: 30px 25px !important;
    text-align: center !important;
    align-items: center !important;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #f48000;
    z-index: 3;
    display: block;
}

.catalog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 84, 160, 0.15);
}

.catalog-card-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    transition: all 0.3s ease !important;
}

.catalog-card:hover .catalog-card-icon {
    background: linear-gradient(135deg, #f48000 0%, #efb370 100%);
    transform: scale(1.1);
}

.catalog-card-icon i {
    font-size: 36px !important;
    color: #ffffff !important;
}

.catalog-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.catalog-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0054a0 !important;
    margin: 0 0 20px 0 !important;
    font-family: "Roboto", sans-serif !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.catalog-card-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #f48000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-family: "Ubuntu", sans-serif !important;
    margin-top: auto !important;
}

.catalog-card-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.catalog-card-link:hover {
    color: #0054a0;
    text-decoration: none;
}

.catalog-card-link:hover i {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .catalog-card {
        padding: 25px 20px;
    }
    
    .catalog-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .catalog-card-icon i {
        font-size: 32px;
    }
    
    .catalog-card-title {
        font-size: 16px;
    }
}

/* ==================== Seção CTA Button ==================== */
.cta-button-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-button-section {
        padding: 100px 0;
    }
    
    .modern-product-detail-section.product-detail-main {
        padding: 100px 0;
    }
}

/* ==================== Seção de Contato Moderna ==================== */
.modern-contact-section {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%) !important;
    position: relative;
    overflow: hidden;
}

.modern-section-header {
    margin-top: 30px !important;
}

.modern-section-sub-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #0054a0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
}

.modern-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.modern-contact-form-wrapper {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 10px 40px rgba(0, 84, 160, 0.1) !important;
}

.modern-contact-form {
    width: 100%;
}

.modern-form-group {
    margin-bottom: 25px !important;
}

.modern-form-group .modern-cta-button {
    display: inline-block !important;
    margin: 0 auto !important;
}

.modern-form-control {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid #e8edf1 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-family: "Ubuntu", sans-serif !important;
    color: #333 !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.modern-form-control:focus {
    outline: none !important;
    border-color: #0054a0 !important;
    box-shadow: 0 0 0 3px rgba(0, 84, 160, 0.1) !important;
}

.modern-form-control::placeholder {
    color: #999 !important;
    font-weight: 400 !important;
}

.modern-form-control textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

.modern-contact-info-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
}

.modern-contact-info-item {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 5px 25px rgba(0, 84, 160, 0.08) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 84, 160, 0.05) !important;
}

.modern-contact-info-item:hover {
    box-shadow: 0 10px 35px rgba(0, 84, 160, 0.15) !important;
}

.modern-contact-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #0054a0 0%, #003d7a 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.modern-contact-info-item:hover .modern-contact-icon {
    background: linear-gradient(135deg, #f48000 0%, #efb370 100%) !important;
    transform: scale(1.1) !important;
}

.modern-contact-icon i {
    font-size: 24px !important;
    color: #ffffff !important;
}

.modern-contact-content {
    flex: 1 !important;
}

.modern-contact-content h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0054a0 !important;
    margin: 0 0 12px 0 !important;
    font-family: "Roboto", sans-serif !important;
}

.modern-contact-content p {
    color: #666 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 0 0 8px 0 !important;
    font-family: "Ubuntu", sans-serif !important;
}

.modern-contact-content p:last-child {
    margin-bottom: 0 !important;
}

.modern-contact-content a {
    color: #0054a0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.modern-contact-content a:hover {
    color: #f48000 !important;
    text-decoration: none !important;
}

.modern-contact-hours {
    color: #999 !important;
    font-size: 14px !important;
}

.modern-contact-note {
    color: #999 !important;
    font-size: 13px !important;
    font-style: italic !important;
}

.modern-map-wrapper {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 84, 160, 0.1) !important;
}

.modern-map-wrapper iframe {
    width: 100% !important;
    height: 480px !important;
    border: none !important;
    display: block !important;
}

@media (max-width: 992px) {
    .modern-contact-form-wrapper {
        padding: 30px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    .modern-contact-section {
        padding: 60px 0 !important;
    }
    
    .modern-section-header {
        margin-top: 30px !important;
    }
    
    .modern-section-title {
        font-size: 28px !important;
    }
    
    .modern-contact-form-wrapper {
        padding: 25px 20px !important;
    }
    
    .modern-contact-info-item {
        padding: 25px 20px !important;
    }
    
    .modern-contact-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .modern-contact-icon i {
        font-size: 20px !important;
    }
    
    .modern-map-wrapper iframe {
        height: 350px !important;
    }
}

/* Estilo para logo no header */
.header_area .navbar .logo_h img {
    width: 250px !important;
    height: auto;
}/* Estilo para logo no footer - mesmo tamanho do header */
.footer-logo img {
    width: 250px !important;
    height: auto !important;
    max-height: none !important;
}
