/* ===================== SEÇÃO HERO TITLE ===================== */
.hero-title {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #07114a 0%, #1a3a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imagens/p1/CMC-01.png') center/cover no-repeat;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-title-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInTitle 0.8s ease-out 0.2s forwards;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInSubtitle 0.8s ease-out 0.4s forwards;
}

@keyframes slideInTitle {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInSubtitle {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================== SEÇÃO IMAGENS ===================== */
.produto-imagens {
    background-color: #ffffff;
    padding: 60px 0;
}

.img-wrapper {
    max-width: 500px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================== SEÇÃO DESCRIÇÃO ===================== */
.produto-descricao {
    background-color: #ffffff;
    padding: 80px 0;
    margin-top: -70px !important;
}

.produto-descricao h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #07114a;
    /*margin-bottom: 1.1rem;*/
}

.produto-descricao .linha3 {
    font-size: 24px;
    font-weight: 700;
    color: #07114a;
    /*margin-bottom: 1.1rem;*/
    line-height: 1;
}

.produto-descricao .modelo {
    font-size: 60px;
    font-weight: 700;
    color: #1162ad;
    line-height: .8;
    
}

.produto-descricao .lead {
    font-size: 28px !important;
    color: #07114a !important;
    line-height: 1.1;
    font-weight: 500;
    /*margin-bottom: 2rem;*/
}

/* ===================== BOTÃO WHATSAPP ===================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    /*background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);*/
    /*background: #ffffff !important;
    color: #000000 !important;*/

    background-color: #25D366 !important; /* verde WhatsApp */
    color: #FFFFFF !important;

    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /*box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);*/
    /*box-shadow: 0 4px 15px #1162ad;*/
    box-shadow: 0 8px 15px #23b26b;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    /*box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);*/
    box-shadow: 0 8px 25px #23b26b;
    /*background: #FFF !important;*/
    background-color: #1EBE5D !important; /* verde mais escuro no hover */
    color: #ffffff;
}

.btn-whatsapp:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* ===================== SEÇÃO ESPECIFICAÇÕES ===================== */
.produto-specs {
    background: linear-gradient(135deg, #07114a 0%, #1a3a7a 100%);
    color: #ffffff;
    padding: 20px ;
    /*margin-bottom: -15px;*/
}

.specs-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li:hover {
    padding-left: 10px;
    color: #25d366;
}

.specs-list i {
    color: #25d366;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 991px) {
    .hero-title {
        min-height: 250px;
    }

    .hero-title-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .img-wrapper {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .produto-imagens {
        padding: 40px 0;
    }

    .produto-descricao {
        padding: 60px 0;
    }

    .produto-descricao h2 {
        font-size: 1.8rem;
    }

    .specs-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        min-height: 350px;
    }

    .hero-title-text {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 1.5rem 0.5rem;
    }

    .produto-imagens {
        padding: 30px 0;
    }

    .img-wrapper {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .produto-descricao {
        padding: 140px 0;
    }

    .produto-descricao h2 {
        font-size: 1.5rem;
    }

    .produto-descricao .lead {
        font-size: 42px;
        color: red !important;
    }

    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .produto-specs {
        padding: 60px 0;
    }

    .specs-title {
        font-size: 1.5rem;
    }

    .specs-list li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
}


/* ===================== SEÇÃO IMAGEM + TEXTO ===================== */
.produto-texto-imagem {
    padding: 80px 0;
    background: #f9f9f9;
}

.img-texto-wrapper {
    max-width: 100%;
}

.img-texto-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.texto-produto {
    padding: 0 2rem;
}

.texto-18 {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.texto-26 {
    font-size: 26px;
    line-height: 1.6;
    color: #07114a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ===================== SEÇÃO CTA ===================== */
.cta-section {
    padding: 60px 0;
    background: #ffffff;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a3a7a 0%, #07114a 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 17, 74, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(7, 17, 74, 0.3);
    color: #ffffff;
}

.btn-cta-primary i {
    font-size: 18px;
}

/* ===================== SEÇÃO ESPECIFICAÇÕES COM ABAS ===================== */
.borda-geral {border-style: solid;  border-width: 1px; border-radius: 10px; }
.borda-geral-interna {border-style: solid;  border-width: 1px; border-radius: 10px; border-right: none;border-top: none;border-bottom: none;}
.produto-specs-tabs {
    /*padding: 20px 0;*/
    background: #ffffff;
}

.specs-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #07114a;
    text-align: left;
}

.specs-subtitulo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #07114a;
    text-align: left;
}

/* ===== ABAS MENU ===== */
.tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;

}

.tab-btn {
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 16px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:hover {
    background: #e8e8e8;
    border-color: #1a3a7a;
    color: #1a3a7a;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1a3a7a 0%, #07114a 100%);
    color: #ffffff;
    border-color: #07114a;
}

.tab-btn span {
    display: block;
    line-height: 1.3;
}

/* ===== CONTEÚDO ABAS ===== */
.tabs-content {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs-content h3 {
    font-size: 1.8rem;
    color: #07114a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #1a3a7a;
}

.specs-subtitle {
    font-size: 1.2rem;
    color: #07114a;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3a7a 0%, #07114a 100%);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* ===== TABELAS ===== */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table tr:nth-child(even) {
    background: #ffffff;
}

.specs-table tr:nth-child(odd) {
    background: #f5f5f5;
}

.specs-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #07114a;
    width: 60%;
}

.specs-table td:last-child {
    text-align: right;
    color: #1a3a7a;
    font-weight: 500;
}

/* ===== LISTAS SIMPLES ===== */
.specs-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list-simple li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.specs-list-simple li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a3a7a;
    font-weight: bold;
    font-size: 16px;
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 991px) {
    .produto-texto-imagem {
        padding: 60px 0;
    }

    .texto-produto {
        padding: 0;
        margin-top: 2rem;
    }

    .texto-26 {
        font-size: 22px;
    }

    .specs-titulo {
        font-size: 2rem;
    }

    .tabs-menu {
        margin-bottom: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        min-width: 150px;
        min-height: auto;
        padding: 12px 8px;
        font-size: 12px;
    }

    .tabs-content {
        padding: 1.5rem;
    }

    .tabs-content h3 {
        font-size: 1.5rem;
    }

    .specs-subtitle {
        font-size: 1rem;
    }

    .specs-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .produto-texto-imagem {
        padding: 40px 0;
    }

    .texto-18 {
        font-size: 16px;
    }

    .texto-26 {
        font-size: 20px;
    }

    .texto-produto {
        padding: 0;
    }

    .btn-cta-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .produto-specs-tabs {
        padding: 20px 0;
    }

    .specs-titulo {
        font-size: 1.5rem;
    }

    .tabs-menu {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1.5rem;
    }

    .tab-btn {
        min-width: 100%;
        min-height: 50px;
        padding: 12px;
        font-size: 13px;
    }

    .tabs-content {
        padding: 1rem;
    }

    .tabs-content h3 {
        font-size: 1.2rem;
    }

    .specs-subtitle {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .row {
        flex-direction: column;
    }

    .specs-table {
        font-size: 12px;
    }

    .specs-table td {
        padding: 8px 10px;
    }

    .specs-list-simple li {
        padding: 8px 0;
        padding-left: 25px;
        font-size: 13px;
    }
}


/* ===================== SEÇÃO DESENHO TÉCNICO ===================== */
.produto-desenho-tecnico {
    background: #ffffff;
    padding: 80px 0;
}

.desenho-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #07114a;
    text-align: left;
}

.tabs-menu-desenho {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-btn-desenho {
    background: #e8eef7;
    color: #07114a;
    border: 2px solid #d0d8e8;
    padding: 16px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn-desenho:hover {
    background: #d0d8e8;
    border-color: #1a3a7a;
    transform: translateX(5px);
}

.tab-btn-desenho.active {
    background: #07114a;
    color: #ffffff;
    border-color: #07114a;
    box-shadow: 0 4px 12px rgba(7, 17, 74, 0.3);
}

.tabs-content-desenho {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-pane-desenho {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.tab-pane-desenho.active {
    display: block;
}

.desenho-img-wrapper {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    justify-content: center;
}

.desenho-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

/* ===================== SEÇÃO FORMULÁRIO ===================== */
.produto-formulario {
    background: linear-gradient(135deg, #1a3a7a 0%, #07114a 100%);
    color: #ffffff;
    padding: 80px 0;
}

.formulario-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1rem;
}

.formulario-descricao {
    font-size: 1.1rem;
    color: #e0e8f0;
    text-align: left;
    margin-bottom: 0;
}

.tabs-menu-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-btn-form {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tab-btn-form:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.tab-btn-form.active {
    background: rgba(255, 255, 255, 0.95);
    color: #07114a;
    border-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.tabs-content-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tab-pane-form {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane-form.active {
    display: block;
}

/* ===== FORMULÁRIO ESTILOS ===== */
.form-datasheet {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #07114a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid #d0d8e8;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1a3a7a;
    box-shadow: 0 0 0 3px rgba(26, 58, 122, 0.1);
    background: #ffffff;
}

.form-control::placeholder {
    color: #999;
}

.btn-form-submit {
    background: linear-gradient(135deg, #1a3a7a 0%, #07114a 100%);
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(7, 17, 74, 0.3);
}

.btn-form-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(7, 17, 74, 0.5);
}

.btn-form-submit:active {
    transform: translateY(-2px);
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 991px) {
    .produto-desenho-tecnico {
        padding: 60px 0;
    }

    .desenho-titulo {
        font-size: 2rem;
    }

    .desenho-subtitulo {
        font-size: 1.5rem;
        font-weight: 500;
        color: #07114a;
        text-align: left
    }

    .tabs-menu-desenho {
        margin-bottom: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tab-btn-desenho {
        flex: 1;
        min-width: 140px;
        min-height: auto;
        padding: 12px 8px;
        font-size: 12px;
    }

    .tabs-content-desenho {
        padding: 30px;
        min-height: 400px;
    }

    .formulario-titulo {
        font-size: 2rem;
    }

    .formulario-descricao {
        font-size: 1rem;
    }

    .tabs-menu-form {
        margin-bottom: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tab-btn-form {
        flex: 1;
        min-width: 140px;
        min-height: auto;
        padding: 12px 8px;
        font-size: 12px;
    }

    .tabs-content-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .produto-desenho-tecnico {
        padding: 40px 0;
    }

    .desenho-titulo {
        font-size: 1.5rem;
    }

    .tabs-menu-desenho {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn-desenho {
        min-width: 100%;
        min-height: 50px;
        padding: 12px;
        font-size: 13px;
    }

    .tabs-content-desenho {
        padding: 20px;
        min-height: 300px;
    }

    .produto-formulario {
        padding: 40px 0;
    }

    .formulario-titulo {
        font-size: 1.5rem;
    }

    .formulario-descricao {
        font-size: 0.95rem;
    }

    .tabs-menu-form {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn-form {
        min-width: 100%;
        min-height: 50px;
        padding: 12px;
        font-size: 13px;
    }

    .tabs-content-form {
        padding: 20px;
    }

    .form-label {
        font-size: 0.95rem;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .btn-form-submit {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}


/* ===================== SEÇÃO PARCEIROS ===================== */

.produto-parceiros {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.parceiros-titulo {
    font-size: 2.8rem;
    font-weight: 700;
    color: #07114a;
    text-align: center;
    margin-bottom: 1rem;
    animation: titleZoomIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes titleZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.parceiros-descricao {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parceiros-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a7a;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: subtitleSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes subtitleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.parceiros-subtitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a3a7a 0%, #07114a 100%);
    border-radius: 2px;
    animation: underlineExpand 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes underlineExpand {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 80px;
    }
}

/* ===== LOGOS PARCEIROS ===== */

.parceiros-logos {
    margin-top: 3rem;
    
    
}



.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 150px;
    animation: logoFadeIn 0.6s ease forwards;
    opacity: 0;
}

.logo-wrapper:nth-child(1) { animation-delay: 0.1s; }
.logo-wrapper:nth-child(2) { animation-delay: 0.2s; }
.logo-wrapper:nth-child(3) { animation-delay: 0.3s; }
.logo-wrapper:nth-child(4) { animation-delay: 0.4s; }

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-wrapper:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(26, 58, 122, 0.2);
}

.logo-wrapper.logo-left {
    /*justify-content: flex-start;*/
    justify-content: center;
}

.logo-wrapper.logo-right {
    /*justify-content: flex-end;*/
    justify-content: center;
}

.logo-img {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-img {
    filter: brightness(1.1);
    transform: scale(1.1);
}

/* ===================== RESPONSIVIDADE ===================== */

@media (max-width: 991px) {
    .produto-parceiros {
        padding: 60px 0;
    }

    .parceiros-titulo {
        font-size: 2rem;
    }

    .parceiros-descricao {
        font-size: 1rem;
    }

    .parceiros-subtitle {
        font-size: 1.6rem;
    }

    .logo-wrapper {
        min-height: 120px;
        padding: 15px;
    }

    .logo-wrapper.logo-left,
    .logo-wrapper.logo-right {
        justify-content: center;
    }

    .logo-img {
        max-width: 100px;
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .produto-parceiros {

        padding: 40px 0;
    }

    .parceiros-titulo {
        font-size: 1.5rem;
    }

    .parceiros-descricao {
        font-size: 0.95rem;
    }

    .parceiros-subtitle {
        font-size: 1.3rem;
    }

    .parceiros-logos .col-md-6 {
        flex: 0 0 40%;
        max-width: 40%;
    }



    .logo-wrapper {
        min-height: 100px;
        padding: 12px;
        margin-bottom: 1rem;
    }

    .logo-wrapper.logo-left,
    .logo-wrapper.logo-right {
        justify-content: center;
    }

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

    .btn-cta-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}



/* ===================== SEÇÃO IMAGEM DESTAQUE ===================== */

.sobre-imagem-destaque {
    background-color: var(--cor-meio-titulo);
    padding: 40px 20px;
    width: 100%;
    margin-top: -10px;
}

.sobre-imagem-destaque .imagem-destaque-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
}

.sobre-imagem-destaque .imagem-destaque-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-top: 10px;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .sobre-imagem-destaque {
        padding: 30px 15px;
    }

    .sobre-imagem-destaque .imagem-destaque-wrapper {
        height: 150px;
    }
}

/* Responsivo - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .sobre-imagem-destaque .imagem-destaque-wrapper {
        height: 180px;
    }
}

.produto-imagem-destaque {
    background-color: var(--cor-topo);
    padding: 40px 20px;
    width: 100%;
    margin-top: -40px;
}

.imagem-destaque-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
}

.imagem-destaque-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-top: -40px;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .produto-imagem-destaque {
        padding: 30px 15px;
    }

    .imagem-destaque-wrapper {
        height: 150px;
    }
}

/* Responsivo - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .imagem-destaque-wrapper {
        height: 180px;
    }
}



.section-whatsapp-btn {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    margin: 0;
    min-height: auto !important; /* não deixa herdar altura gigante */
}

/* FORÇA visual do botão, mesmo se tiver Bootstrap/tema em cima */
.section-whatsapp-btn .btn-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;

    padding: 12px 24px !important;

    background-color: #25D366 !important; /* verde WhatsApp */
    color: #FFFFFF !important;

    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer !important;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    transition: background-color 0.2s ease, transform 0.2s ease,
                box-shadow 0.2s ease !important;
}

.section-whatsapp-btn .btn-whatsapp i {
    font-size: 1.2rem !important;
    margin-right: 4px; /* se precisar dar um respiro do texto */
}

.section-whatsapp-btn .btn-whatsapp:hover,
.section-whatsapp-btn .btn-whatsapp:focus {
    background-color: #1EBE5D !important; /* verde mais escuro no hover */
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18) !important;
}