/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}


html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-family: Arial, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a60b7;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 54px;
    /* border-radius: 50%; */
}

.brand span {
    font-weight: bold;
    font-size: 16px;
}

nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 500;
}

/* ===== MENU MOBILE ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
}

@media(max-width:768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #0a60b7;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding: 110px 40px 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.section.show {
    opacity: 1;
    transform: none;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e0f4ff;
}

.hero-text {
    max-width: 520px;
}

.hero-text h1 {
    font-size: 48px;
    color: #0a60b7;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6);
}

/* 
.hero-text h1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
} */


.hero-text p {
    font-size: 18px;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* ===== HERO COM VÍDEO ===== */
.hero-video {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Vídeo */
/* .hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
} */

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay escuro */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.55));
    z-index: 2;
}

/* Conteúdo acima do vídeo */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 40px 60px;
    color: #fff;
}

/* Texto */
.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* Mascote */
.hero-mascote img {
    max-width: 450px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-mascote img {
        max-width: 220px;
        margin-top: 25px;
    }

}

/* ===== FOOTER ===== */
.footer-main {
    background: #004a99;
    color: #fff;
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* ===== ÍCONES SOCIAIS ===== */
.social-icons {
    display: flex;
    gap: 15px;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.facebook {
    background-color: #1877f2;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 1 0-11.5 9.9v-7h-2v-3h2V9.5c0-2 1.2-3.1 3-3.1.9 0 1.8.1 1.8.1v2h-1c-1 0-1.3.6-1.3 1.2V12h2.6l-.4 3h-2.2v7A10 10 0 0 0 22 12z'/%3E%3C/svg%3E");
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm5 5a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm6.5-.9a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2z'/%3E%3C/svg%3E");
}

.whatsapp {
    background-color: #25d366;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.9 11.9 0 0 0 12 0 12 12 0 0 0 2 18.9L0 24l5.3-1.9A12 12 0 0 0 24 12c0-3.2-1.2-6.3-3.5-8.5z'/%3E%3C/svg%3E");
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: #003b7a;
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.9 11.9 0 0 0 12 0 12 12 0 0 0 2 18.9L0 24l5.3-1.9A12 12 0 0 0 24 12c0-3.2-1.2-6.3-3.5-8.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    z-index: 999;
}

/* ===== RESPONSIVO ===== */
@media(max-width:900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}



/* ===== SOBRE NÓS ===== */
.sobre {
    background: #ffffff;
}

.sobre-container {
    max-width: 60vw;
    margin: 0 auto;
    text-align: center;
}

.sobre-container h2 {
    font-size: 36px;
    color: #0a3d91;
    margin-bottom: 20px;
    position: relative;
}

.sobre-container h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #6fbf44;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.sobre-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-top: 25px;
    text-align: justify;
    text-justify: inter-word;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .sobre-container p {
        text-align: left;
    }
}

/* ===== CONTATO ===== */
.contato {
    background: #ffffff;
}

.contato-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contato-box {
    flex: 1;
    max-width: 600px;
    background: #fff;
    padding: 50px 45px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== FORM ===== */
.form-contato {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== FLOATING LABEL ===== */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 15px;
    background: transparent;
    outline: none;
    transition: .3s ease;
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

/* Label */
.form-group label {
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 14px;
    color: #888;
    background: #fff;
    padding: 0 5px;
    transition: .2s ease;
    pointer-events: none;
}

/* Quando focado ou preenchido */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #0a60b7;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 12px;
    color: #0a60b7;
}

/* ===== CAPTCHA ===== */
.captcha {
    display: flex;
    justify-content: center;
}

/* ===== BOTÃO ===== */
.form-contato button {
    background: linear-gradient(90deg, #0a60b7, #0a3d91);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .3s ease;
}

.form-contato button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

/* MENSAGENS */
.sucesso {
    margin-top: 20px;
    color: #2e7d32;
    text-align: center;
    font-weight: bold;
}

.erro {
    margin-top: 20px;
    color: #c62828;
    text-align: center;
    font-weight: bold;
}


#contactForm button:hover {
    background: #5aa935;
}



/* ===== INFO CONTATO ===== */
.info-contato {
    margin-top: 30px;
    text-align: center;
    color: #444;
    font-size: 15px;
}

.info-contato p {
    margin: 8px 0;
}


@media(max-width:768px) {

    .sobre-container h2,
    .contato-container h2 {
        font-size: 28px;
    }

    .contato-container {
        padding: 25px;
    }

    .sobre-container p {
        font-size: 16px;
    }
}


/* ===== PRODUTOS ===== */
.produtos {
    background: #f6f9fc;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #0a3d91;
    margin-bottom: 50px;
}

/* GRID */
.produtos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.produto-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.produto-card img {
    max-height: 260px;
    margin-bottom: 20px;
}

.produto-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* BOTÃO */
.btn-produto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a60b7;
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-produto:hover {
    background: #084a8a;
    transform: scale(1.05);
}

/* RESPONSIVO */
@media(max-width:900px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: none;
    z-index: 998;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.95);
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    padding: 35px 30px;
    display: none;
    z-index: 999;
    transition: .3s;
}

/* ATIVO */
.modal.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

/* FECHAR */
.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: #0a60b7;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 18px;
}

/* HEADER */
.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: #0a60b7;
    font-size: 22px;
}

.modal-header p {
    color: #555;
    font-size: 14px;
}

/* FORM */
.modal-form {
    display: flex;
    flex-direction: column;
}

.modal-form input,
.modal-form textarea {
    margin-bottom: 15px;
    padding: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
}

.modal-form textarea {
    resize: none;
    min-height: 110px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* BOTÃO */
.modal-form button {
    background: linear-gradient(90deg, #004a99, #0077b6);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}


@media (max-width: 768px) {

    /* ===== MODAL OVERLAY ===== */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .65);
        display: none;
        z-index: 998;
    }

    /* ===== MODAL ===== */
    .modal {
        position: fixed;
        inset: 0;
        margin: auto;

        background: #fff;
        width: 90%;
        max-width: 420px;
        max-height: 90vh;

        border-radius: 18px;
        padding: 35px 25px;

        display: none;
        z-index: 999;

        overflow-y: auto;

        transform: scale(.95);
        transition: .3s ease;
    }

    /* ATIVO */
    .modal.active {
        /* transform: translate(-50%, -50%) scale(1); */
        display: block;
        transform: scale(1);
    }

    /* FECHAR */
    .modal-close {
        position: absolute;
        top: 12px;
        right: 14px;
        background: #0a60b7;
        color: #fff;
        border: none;
        border-radius: 6px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        font-size: 18px;
    }

    /* HEADER */
    .modal-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .modal-header h2 {
        color: #0a60b7;
        font-size: 22px;
    }

    .modal-header p {
        color: #555;
        font-size: 14px;
    }

    /* FORM */
    .modal-form {
        display: flex;
        flex-direction: column;
    }

    .modal-form-message {
        flex: 1;
        resize: none;

        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 14px;
        font-size: 15px;

        min-height: 120px;
    }

    .modal-form input,
    .modal-form textarea {
        margin-bottom: 15px;
        padding: 14px;
        border: none;
        border-bottom: 1px solid #ccc;
        font-size: 15px;
    }

    /* BOTÃO */
    .modal-form button {
        background: linear-gradient(90deg, #004a99, #0077b6);
        color: #fff;
        border: none;
        padding: 14px;
        border-radius: 30px;
        font-weight: bold;
        cursor: pointer;
    }

    .modal-form textarea {
        resize: none;
        min-height: 110px;
        border: 1px solid #ccc;
        border-radius: 8px;
    }
}


/* ===== MODAL POLÍTICA ===== */
.modal-politica {
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
}

.modal-politica-content {
    padding: 30px;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-politica-content h2 {
    color: #0a60b7;
    margin-bottom: 20px;
}

.modal-politica-content h3 {
    margin-top: 20px;
    color: #0a3d91;
}

.modal-politica-content p {
    line-height: 1.7;
    color: #444;
    margin-top: 10px;
}


/* ===== BOTÃO CONTATO NO MENU ===== */
.btn-menu-contato {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a3d91, #1e90ff);
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 90, 200, 0.35);
}

/* ÍCONE */
.btn-menu-contato .btn-icon {
    font-size: 18px;
}

/* EFEITO DE ONDA / BRILHO */
.btn-menu-contato::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: left 0.6s ease;
}

.btn-menu-contato:hover::before {
    left: 100%;
}

/* HOVER */
.btn-menu-contato:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 90, 200, 0.5);
}

/* MOBILE (opcional: esconder botão grande) */
@media (max-width: 768px) {
    .btn-menu-contato {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
}


/* ===== CONTATO COM MASCOTE ===== */
.contato-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* FORMULÁRIO */
.contato-box {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* MASCOTE */
.contato-mascote {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato-mascote img {
    width: 100%;
    height: auto;
    animation: floatMascote 4s ease-in-out infinite;
}

/* ANIMAÇÃO SUAVE */
@keyframes floatMascote {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contato-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contato-mascote {
        display: none;
    }
}

/* ===== BANNER DE COOKIES ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a3d91;
    color: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    display: none;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #9effc3;
    text-decoration: underline;
}

.cookie-banner button {
    background: #2ecc71;
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-banner button:hover {
    background: #27ae60;
}

.map-container {
    margin-top: 15px;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-container {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.map-container:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .map-container {
        height: 160px;
    }
}


/* MOBILE */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        width: calc(100% - 40px);
    }
}

/* ============================= */
/* SEÇÃO POLITICA DA QUALIDADE   */
/* ============================= */
.modal-qualidade {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 850px;

    max-height: 85vh;

    background: #fff;
    border-radius: 18px;

    display: none;
    flex-direction: column;

    z-index: 1000;
}

.modal-qualidade.active {
    display: flex;
}

.modal-qualidade .section {
    padding: 0;
    margin: 0;
}

/* RESET DO CONTAINER DENTRO DO MODAL */
.modal-qualidade .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.modal-qualidade-content {
    overflow-y: auto;
    padding: 45px 55px;
    flex: 1;
    line-height: 1.7;
    color: #333;
}

/* Título principal */
.modal-qualidade-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a60b7;
    margin-bottom: 25px;
}

/* Subtítulo */
.modal-qualidade-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Parágrafos */
.modal-qualidade-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #444;
}

/* Lista */
.modal-qualidade-content ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.modal-qualidade-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .modal-qualidade {
        top: 0;
        left: 0;
        transform: none;
        width: 90%;
        height: 90dvh;
        max-height: 90dvh;
        border-radius: 16px;
    }

    .modal-qualidade-content {
        padding: 30px 22px;
    }

    .modal-qualidade-content h2 {
        font-size: 22px;
    }

    .modal-qualidade-content h3 {
        font-size: 18px;
    }

    .modal-qualidade-content p,
    .modal-qualidade-content li {
        font-size: 14px;
    }
}

/* ============================= */
/* ===== SEÇÃO PARCEIROS ====== */
/* ============================= */

.parceiros-carousel h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #0a3d91;
}

.parceiros-carousel .subtitulo {
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
    padding: 10px;
    text-align: center;
}

/* ===== CARROSSEL ===== */

.parceiros-carousel {
    padding-top: 20px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.parceiros-carousel:hover .carousel-track {
    animation-play-state: paused;
}

/* ===== CARD ===== */

.parceiro-card {
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: all 0.4s ease;
}

.parceiro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ===== LOGO ===== */

.parceiro-card img {
    width: 100px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.parceiro-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ===== ESTRELAS ===== */

.stars {
    color: #f1c40f;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    animation: starGlow 2s infinite alternate;
}

/* ===== FEEDBACK ===== */

.parceiro-feedback {
    background: rgba(10, 61, 145, 0.06);
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-style: italic;
    color: #444;
}

/* ===== ANIMAÇÃO ===== */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes starGlow {
    from {
        text-shadow: 0 0 5px #f1c40f;
    }

    to {
        text-shadow: 0 0 15px #f1c40f;
    }
}

/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {
    .parceiro-card {
        min-width: 220px;
        max-width: 220px;
    }
}


.sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;

    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.3s ease;
}

.sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}