body{
    font-family: Arial, san-serif;
    margin: 0;
    padding: 0;
}

/* INICIO HEADER */

.top-header { 
    background:
        repeating-linear-gradient(105deg, rgba(255,255,255,0.08) 0 8px, transparent 8px 28px),
        repeating-linear-gradient(120deg, rgba(255,255,255,0.05) 0 16px, transparent 16px 36px),
        repeating-linear-gradient(100deg, rgba(38,181,82,0.10) 0 4px, transparent 4px 26px),
        linear-gradient(90deg, #25D366 60%, #22bb5e 100%);
    box-shadow: 0 2px 8px 0 #0002;
    position: relative;
    z-index: 10;
}

.container-header {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.logo-circle {
    background: #fff;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    position: relative;
    border: 6px solid #168a45;
    box-shadow: 0 6px 40px #1a6d1a33, 0 2px 10px #0001;
    transition: box-shadow 0.3s, transform 0.25s, border-color 0.2s;
}
.logo-circle:hover {
    box-shadow: 0 12px 48px #25D36666, 0 6px 18px #1a6d1a55;
    border-color: #25D366;
    transform: scale(1.07) rotate(-2deg);
    animation: logoPulse 0.7s;
}
@keyframes logoPulse {
    0% { transform: scale(1) rotate(0deg);}
    40% { transform: scale(1.12) rotate(-2deg);}
    70% { transform: scale(1.07) rotate(1deg);}
    100% { transform: scale(1.07) rotate(-2deg);}
}
.logo {
    width: 128px;
    height: auto;
    display: block;
    transition: filter 0.22s;
    filter: drop-shadow(0 2px 7px #26b55223);
}
.logo-circle:hover .logo {
    filter: drop-shadow(0 3px 12px #25D36677);
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whatsapp-group-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(32, 119, 55, 0.15);
    border-radius: 16px;
    padding: 14px 24px 20px 24px;
    box-shadow: 0 4px 16px 0 #21a74622;
    margin-bottom: 0;
    min-width: 200px;
}
.whatsapp-group-img {
    width: 110px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}
.grupo-whatsapp-texto {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: .04em;
    text-shadow: 0 1px 6px #1a6d1a70;
}

.contact-info-box {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 1.13em;
    align-items: flex-start;
}
.contact-info i {
    color: #168a45;
    margin-right: 8px;
}
.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-bottom: 1px dotted #26b55250;
    transition: border 0.2s, color 0.2s;
}
.contact-info a:hover {
    color: #dafbe7;
    border-bottom: 1.5px solid #fff;
}

/* ========== MENU DE NAVEGAÇÃO MODERNO ========== */
.main-menu-header {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 8px #25D36619;
    z-index: 100;
    position: relative;
    width: 100%;
}

.main-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 110;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    background: #168a45;
    border-radius: 2px;
    transition: 0.3s;
}

.main-menu-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.main-menu-header li {
    display: inline-block;
}
.main-menu-header a {
    color: #1a2e15;
    font-weight: 700;
    text-decoration: none;
    padding: 17px 0 11px;
    display: inline-block;
    font-size: 1.11em;
    border-bottom: 3px solid transparent;
    transition: border 0.2s, color 0.2s, background 0.2s;
}
.main-menu-header a:hover,
.main-menu-header a.active {
    color: #25D366;
    background: #e7fce8;
    border-bottom: 3px solid #25D366;
    border-radius: 2px 2px 0 0;
}

/* DESKTOP (menu fixo na horizontal) */
@media (min-width: 801px) {
    .main-menu-inner {
        flex-direction: row;
        justify-content: center;
    }
    .main-menu-header ul {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        border-radius: 0;
        width: auto;
    }
    .menu-toggle {
        display: none;
    }
}

/* MOBILE: menu vira hambúrguer centralizado, NÃO sobrepõe carrossel! */
@media (max-width: 800px) {
    .main-menu-header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 200;
        min-height: 54px;
    }
    .main-menu-inner {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }
    .menu-toggle {
        display: flex;
        position: relative;
        right: 0;
        top: 0;
        margin: 8px 16px 8px auto;
    }
    .main-menu-header ul {
        display: none;
        position: static;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: 0 8px 24px #0001;
        border-radius: 0 0 8px 8px;
        padding: 0;
        margin: 0;
    }
    .main-menu-header ul.open {
        display: flex;
    }
    .main-menu-header li {
        width: 100%;
    }
    .main-menu-header a {
        width: 100%;
        padding: 14px 20px;
        border-radius: 0;
        border-bottom: 1px solid #f3f3f3;
    }
}

@media (max-width: 600px) {
    .top-header {
        padding: 28px 0 24px 0;
    }
    .container-header {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .logo-circle {
        width: 100px;
        height: 100px;
        padding: 0;
        border-width: 3px;
    }
    .logo {
        width: 65px;
    }
    .contact-info-box {
        align-items: center;
    }
    .contact-info {
        align-items: flex-start;
    }
    .contact-info > div {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-bottom: 6px;
    }
    .contact-info i {
        margin-right: 6px;
        font-size: 1.18em;
    }
    .contact-info a {
        word-break: break-all;
    }
}


/* FIM DO HEADER */



/* INICIO DO FOOTER */

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
    margin: auto;
}

.footer-section {
    flex: 1 1 300px; /* flex-grow, flex-shrink, flex-basis */
    min-width: 250px;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    /* REMOVE o espaçamento vertical padrão, deixa para o mobile controlar */
}

.footer-section h3 {
    border-bottom: 2px solid #1a6d1a;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p,
.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a:hover {
    color: #1a6d1a;
}

/* Redes Sociais */
.social-icons a {
    display: inline-block;
    color: white;
    margin: 5px;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #1a6d1a;
}

/* Formulário */
form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    background: #333;
    color: white;
    box-sizing: border-box;
}

form button {
    width: 62px;
    height: 40px;
    border: none;
    background: #228B22;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
}

form button:hover {
    background: darkgreen;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    background: black;
    padding: 10px 0;
}

.newsletter-msg {
    font-size: 1.08em;
    margin: 12px 0 6px 0;
    padding: 3px 0;
    font-weight: 500;
    transition: opacity 0.4s;
}
.newsletter-msg.success { color: #13b944; }
.newsletter-msg.error   { color: #ff3333; }

/* Responsividade */
@media (max-width: 900px) {
    .footer-container {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0; /* Remove gap padrão */
    }

    .footer-section {
        width: 100%;
        margin-bottom: 18px;   /* Ajuste o valor para aumentar/diminuir a distância entre blocos */
        padding-bottom: 0;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }

    form {
        align-items: center;
    }

    form input {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer-section {
        margin-bottom: 12px;
    }
    .footer-container {
        padding: 0 4vw;
    }
}

/* FIM DO FOOTER */



/*INCIO PAGINA CARROSSEL*/

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    height: 570px;
    margin: 16px auto 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    min-width: 100%;
    transition: transform 3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
    animation: fragmentacao 3s forwards;
    z-index: 2;
}

/* LINK ABRAÇA TODA A IMAGEM */
.carousel-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer !important;
    outline: none;
    border-radius: 10px;
    transition: box-shadow 0.18s;
    /* Garante que link pega toda a área */
}
.carousel-item a:focus,
.carousel-item a:hover {
    box-shadow: 0 2px 18px #25d36644;
}
.carousel-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
}

/* IMAGEM SOZINHA TAMBÉM */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    animation: fragmentacao 1s ease-in-out;
    background: #fff;
    cursor: pointer;
}

/* Mensagem "sem imagens" */
.carousel-empty {
    text-align: center;
    font-size: 18px;
    color: #777;
    margin-top: 50px;
}

@keyframes fragmentacao {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0;
        transform: scale(1.1);
    }
    30% {
        clip-path: polygon(0 0, 90% 10%, 95% 100%, 0 90%);
        opacity: 0;
        transform: scale(1);
    }
}

/* Estilos das setas */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1a6d1a;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
    z-index: 10;
}
.prev { left: 18px; }
.next { right: 18px; }
.carousel-container:hover .prev,
.carousel-container:hover .next {
    opacity: 1;
    background: #16754a;
}

/* RESPONSIVO - CARROSSEL */
@media (max-width: 1024px) {
    .carousel-container {
        height: auto;
        min-height: 200px;
        padding-left: 6px;
        padding-right: 6px;
    }
    .carousel-item img, .carousel-item a img {
        width: 100%;
        height: auto;
        max-height: 340px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        border-radius: 12px;
        background: #fff;
    }
    .prev, .next {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .carousel-container {
        height: auto;
        min-height: 120px;
        padding-left: 2vw;
        padding-right: 2vw;
        margin-top: 12px;
    }
    .carousel-item img, .carousel-item a img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        background: #fff;
    }
    .prev, .next {
        display: none !important;
    }
}
@media (max-width: 480px) {
    .carousel-container {
        height: auto;
        min-height: 70px;
        padding-left: 1vw;
        padding-right: 1vw;
        margin-top: 6px;
    }
    .carousel-item img, .carousel-item a img {
        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        background: #fff;
    }
    .prev, .next {
        display: none !important;
    }
}
/*FIM DA PAGINA CARROSSEL*/

/*INICIO OFERTAS ESPECIAIS NO INDEX*/

/* Estilização geral da seção */
.container-index {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* Título da seção */
.container-index h1 {
    color: #1a6d1a;
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 3px solid #1a6d1a;
    padding-bottom: 5px;
    width: 100%;
    text-align: left;
}

/* Container dos slides */
.carousel-ofertas {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Slides individuais */
.oferta-slide {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

/* Card de oferta */
.oferta-item {
    width: 150px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    box-sizing: border-box;
    transition: box-shadow 0.2s, transform 0.2s;
}
.oferta-item:hover {
    box-shadow: 0 8px 24px #25d36655;
    transform: translateY(-4px) scale(1.03);
}

/* Wrapper da mídia para posicionar o selo */
.oferta-media {
    position: relative;
}

/* Imagem do produto (sem cortar) */
.oferta-media img,
.oferta-item img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: contain;           /* antes era cover: agora não corta a imagem */
    border-radius: 4px;
    background: #fafafa;
    margin-bottom: 6px;
}

/* Selo “OFERTA” (quando oferta_destacada = 1) */
.badge-oferta {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #d60000;
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    padding: .28rem .45rem;
    border-radius: 999px;
    letter-spacing: .04em;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

/* Título do produto */
.oferta-item h2,
.oferta-nome {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* (Mantido por compatibilidade; não é mais exibido) */
.oferta-item p {
    display: none;
}

/* Preço + unidade */
.oferta-item .preco {
    color: #1a6d1a;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.02em;
}
.oferta-item .preco .unidade {
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

/* Paginação abaixo do carrossel */
.pagination-ofertas {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 15px;
    padding-right: 40px;
}

.dot-oferta {
    background-color: #eee;
    border: none;
    color: #333;
    padding: 8px 12px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, outline 0.2s;
    outline: none;
}
.dot-oferta.active-dot,
.dot-oferta:hover,
.dot-oferta:focus {
    background-color: #d60000;
    color: white;
    outline: 2px solid #1a6d1a;
}

/* RESPONSIVO - OFERTAS ESPECIAIS */
@media (max-width: 1024px) {
    .oferta-slide {
        gap: 15px;
        padding: 20px 20px;
    }
    .oferta-item {
        width: 140px;
        padding: 8px;
    }
    .oferta-media img,
    .oferta-item img {
        max-width: 100%;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .container-index {
        flex-direction: column;
        padding: 0 10px;
        align-items: center;
        max-width: 100vw;
    }
    .oferta-slide {
        gap: 12px;
        padding: 10px 0;
    }
    .oferta-item {
        width: 45%; /* 2 por linha */
        margin-bottom: 10px;
    }
    .pagination-ofertas {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .oferta-item {
        width: 100%; /* 1 por linha */
    }
    .oferta-media img,
    .oferta-item img {
        width: 100%;
        height: auto;
    }
    .oferta-item h2,
    .oferta-nome {
        font-size: 14px;
        height: auto;
    }
    .oferta-item .preco {
        font-size: 14px;
    }
}

/*FIM OFERTAS ESPECIAIS NO INDEX*/



/* INÍCIO OFERTAS RELÂMPAGO NO INDEX */

/* Estilização geral da seção */
.container-index-relampago {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Título da seção */
.container-index-relampago h1 {
    color: #1a6d1a;
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 3px solid #1a6d1a;
    padding-bottom: 5px;
    width: 100%;
    text-align: left;
}

/* Container dos slides */
.carousel-relampago {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Slides individuais */
.relampago-slide {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

/* Item individual */
.relampago-item {
    width: 150px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    box-sizing: border-box;
    transition: box-shadow 0.2s, transform 0.2s;
}
.relampago-item:hover {
    box-shadow: 0 8px 24px #ffba0066;
    transform: translateY(-4px) scale(1.03);
}

/* Wrapper da mídia para posicionar o selo */
.relampago-media {
    position: relative;
}

/* Imagem do produto (sem cortar) */
.relampago-media img,
.relampago-item img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: contain;           /* antes era cover: agora não corta a imagem */
    border-radius: 4px;
    background: #fafafa;
    margin-bottom: 6px;
}

/* Selo “OFERTA” (quando oferta_destacada = 1) */
.badge-oferta-relampago {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #1a6d1a;
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    padding: .28rem .45rem;
    border-radius: 999px;
    letter-spacing: .04em;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

/* Título do produto */
.relampago-item h2,
.oferta-nome-relampago {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.relampago-item p {
    display: none;
}
.relampago-item .preco-relampago {
    color: #d60000;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.relampago-item .preco-relampago .unidade-relampago {
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

/* Paginação abaixo do carrossel */
.pagination-relampago {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 15px;
    padding-right: 40px;
}
.dot-relampago {
    background-color: #eee;
    border: none;
    color: #333;
    padding: 8px 12px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, outline 0.2s;
    outline: none;
}
.dot-relampago.active-dot,
.dot-relampago:hover,
.dot-relampago:focus {
    background-color: #d60000;
    color: white;
    outline: 2px solid #1a6d1a;
}

/* RESPONSIVO - OFERTAS RELÂMPAGO */
@media (max-width: 1024px) {
    .relampago-slide {
        gap: 15px;
        padding: 20px 20px;
    }
    .relampago-item {
        width: 140px;
        padding: 8px;
    }
    .relampago-media img,
    .relampago-item img {
        max-width: 100%;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .container-index-relampago {
        flex-direction: column;
        padding: 0 10px;
        align-items: center;
        max-width: 100vw;
    }
    .relampago-slide {
        gap: 12px;
        padding: 10px 0;
    }
    .relampago-item {
        width: 45%; /* 2 por linha */
        margin-bottom: 10px;
    }
    .pagination-relampago {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .relampago-item {
        width: 100%; /* 1 por linha */
    }
    .relampago-media img,
    .relampago-item img {
        width: 100%;
        height: auto;
    }
    .relampago-item h2,
    .oferta-nome-relampago {
        font-size: 14px;
        height: auto;
    }
    .relampago-item .preco-relampago {
        font-size: 14px;
    }
}

/*FIM OFERTAS RELAMPAGO NO INDEX*/

/* INÍCIO OFERTAS ESPECIAIS 3 */

/* Estilização geral da seção */
.container-index-ofertas-especiais3 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Título da seção */
.container-index-ofertas-especiais3 h1 {
    color: #1a6d1a;
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 3px solid #1a6d1a;
    padding-bottom: 5px;
    width: 100%;
    text-align: left;
}

/* Container dos slides */
.carousel-ofertas-especiais3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Slides individuais */
.slide-ofertas-especiais3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

/* Item individual */
.item-ofertas-especiais3 {
    width: 150px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    box-sizing: border-box;
    transition: box-shadow 0.2s, transform 0.2s;
}
.item-ofertas-especiais3:hover {
    box-shadow: 0 8px 24px #25d36655;
    transform: translateY(-4px) scale(1.03);
}

/* Wrapper da mídia para posicionar o selo */
.media-ofertas-especiais3 {
    position: relative;
}

/* Imagem do produto (sem cortar) */
.media-ofertas-especiais3 img,
.item-ofertas-especiais3 img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: contain;           /* antes era cover: agora não corta a imagem */
    border-radius: 4px;
    background: #fafafa;
    margin-bottom: 6px;
}

/* Selo “OFERTA” (quando oferta_destacada = 1) */
.badge-ofertas-especiais3 {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #d60000;
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    padding: .28rem .45rem;
    border-radius: 999px;
    letter-spacing: .04em;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

/* Título do produto */
.item-ofertas-especiais3 h2,
.nome-ofertas-especiais3 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: #333;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.item-ofertas-especiais3 p {
    display: none;
}
.item-ofertas-especiais3 .preco-ofertas-especiais3 {
    color: #1a6d1a;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.item-ofertas-especiais3 .preco-ofertas-especiais3 .unidade-ofertas-especiais3 {
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

/* Paginação abaixo do carrossel */
.pagination-ofertas-especiais3 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 15px;
    padding-right: 40px;
}
.dot-ofertas-especiais3 {
    background-color: #eee;
    border: none;
    color: #333;
    padding: 8px 12px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, outline 0.2s;
    outline: none;
}
.dot-ofertas-especiais3.active-dot,
.dot-ofertas-especiais3:hover,
.dot-ofertas-especiais3:focus {
    background-color: #d60000;
    color: white;
    outline: 2px solid #1a6d1a;
}

/* RESPONSIVO - OFERTAS RELÂMPAGO */
@media (max-width: 1024px) {
    .slide-ofertas-especiais3 {
        gap: 15px;
        padding: 20px 20px;
    }
    .item-ofertas-especiais3 {
        width: 140px;
        padding: 8px;
    }
    .media-ofertas-especiais3 img,
    .item-ofertas-especiais3 img {
        max-width: 100%;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .container-index-ofertas-especiais3 {
        flex-direction: column;
        padding: 0 10px;
        align-items: center;
        max-width: 100vw;
    }
    .slide-ofertas-especiais3 {
        gap: 12px;
        padding: 10px 0;
    }
    .item-ofertas-especiais3 {
        width: 45%; /* 2 por linha */
        margin-bottom: 10px;
    }
    .pagination-ofertas-especiais3 {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .item-ofertas-especiais3 {
        width: 100%; /* 1 por linha */
    }
    .media-ofertas-especiais3 img,
    .item-ofertas-especiais3 img {
        width: 100%;
        height: auto;
    }
    .item-ofertas-especiais3 h2,
    .nome-ofertas-especiais3 {
        font-size: 14px;
        height: auto;
    }
    .item-ofertas-especiais3 .preco-ofertas-especiais3 {
        font-size: 14px;
    }
}

/*FIM OFERTAS ESPECIAIS 3 NO INDEX*/

/* INÍCIO ENCARTES NO INDEX */

.container-encartes {
    max-width: 1200px;
    margin: 28px auto 0 auto;
    padding: 0 20px 18px 20px;
    box-sizing: border-box;
}

.container-encartes h1 {
    color: #0b614b;
    font-size: 27px;
    margin-bottom: 10px;
    border-bottom: 2.5px solid #0b614b;
    padding-bottom: 5px;
    width: 100%;
    text-align: left;
    letter-spacing: 0.02em;
}

.encartes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: flex-start;
}

.encarte-card {
    background: #fff;
    border: 1px solid #1a6d1a33;
    border-radius: 10px;
    box-shadow: 0 2px 10px #1a6d1a0b;
    padding: 10px 10px 14px 10px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.23s, transform 0.2s;
    outline: none;
}
.encarte-card:hover, .encarte-card:focus {
    box-shadow: 0 8px 32px #25d3664f;
    transform: translateY(-3px) scale(1.035);
    border-color: #25d366;
}
.encarte-thumb {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 7px;
    background: #fff; /* fundo branco para bordas */
}
.encarte-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* <-- Mostra a imagem inteira, sem corte! */
    border-radius: 7px;
    background: #fff;      /* Evita borda cinza atrás */
    transition: filter 0.18s;
    box-shadow: none;
}
.encarte-card h2 {
    font-size: 15.5px;
    color: #228b22;
    margin: 10px 0 0 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 22px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .encarte-card {
        width: 45vw;
        max-width: 220px;
    }
    .encarte-thumb {
        height: 130px;
    }
}
@media (max-width: 768px) {
    .container-encartes {
        padding: 0 6px;
    }
    .encarte-card {
        width: 48vw;
        max-width: 170px;
    }
    .encarte-thumb {
        height: 110px;
    }
}
@media (max-width: 480px) {
    .encarte-card {
        width: 95vw;
        max-width: 320px;
    }
    .encarte-thumb {
        height: 90px;
    }
    .container-encartes h1 {
        font-size: 20px;
    }
}
/* FIM ENCARTES NO INDEX */


/*INICIO ENCARTES.PHP*/

.page-encartes {
    max-width: 1200px;
    margin: 36px auto;
    padding: 0 18px 34px 18px;
    box-sizing: border-box;
}
.encartes-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.icon-encarte {
    width: 44px;
    height: 44px;
    filter: brightness(0) saturate(100%) invert(39%) sepia(84%) saturate(473%) hue-rotate(93deg) brightness(88%) contrast(97%);
    /* verde #16754a */
}
.encartes-header h1 {
    font-size: 2rem;
    color: #16754a;
    margin: 0;
}
.encarte-desc {
    font-size: 1.04em;
    color: #3a3a3a;
    opacity: .82;
}
.grid-encartes {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.card-encarte {
    background: #fff;
    border: 1.5px solid #1a6d1a23;
    border-radius: 11px;
    box-shadow: 0 2px 12px #25d3660f;
    width: 220px;
    position: relative;
    transition: box-shadow 0.19s, transform 0.16s;
    overflow: hidden;
    cursor: pointer;
}
.card-encarte:hover {
    box-shadow: 0 10px 40px #25d3663a;
    transform: translateY(-5px) scale(1.037);
    border-color: #25d366;
}
.card-img-container {
    width: 100%;
    height: 178px;
    position: relative;
    overflow: hidden;
    background: #fff; /* Evita borda cinza */
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-encarte-img {
    width: 100%;
    height: 100%;
    object-fit: contain;    /* Mostra a imagem inteira, sem corte! */
    border-radius: 10px 10px 0 0;
    transition: transform 0.18s, filter 0.16s;
    background: #fff;
}
.card-encarte:hover .card-encarte-img {
    transform: scale(1.07);
    filter: brightness(0.94) contrast(1.08);
}
.overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg,#228b22d9 70%, #25d3661a 100%);
    color: #fff;
    font-size: 1.09em;
    font-weight: 600;
    padding: 7px 0 3px 0;
    text-shadow: 0 1px 4px #111b;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
    text-align: center;
}
.acoes-encarte {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 10px 0 2px 0;
}

/* --- BOTÃO PDF PERSONALIZADO --- */
.btn-encarte-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #16754a;
    color: #fff !important;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 3px;
    height: 30px;
    min-width: 112px;
    box-shadow: 0 1px 4px #1a6d1a1c;
    cursor: pointer;
    transition: background 0.13s, color 0.13s, box-shadow 0.15s;
    outline: none;
    white-space: nowrap;
    text-decoration: none;
}
.btn-encarte-pdf i {
    font-size: 1.15em;
    margin-right: 4px;
    color: #fff;
}
.btn-encarte-pdf:hover,
.btn-encarte-pdf:focus {
    background: #25d366;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 2px 12px #25d3664a;
}

/* Botões padrão Whats/Copiar (mantém a aparência anterior) */
.acoes-encarte a:not(.btn-encarte-pdf),
.acoes-encarte button {
    background: #f8faf8;
    border: none;
    border-radius: 6px;
    color: #168a45;
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px #1a6d1a19;
    transition: background 0.13s, color 0.13s, box-shadow 0.16s;
    outline: none;
    position: relative;
}
.acoes-encarte a:not(.btn-encarte-pdf):hover,
.acoes-encarte button:hover,
.acoes-encarte button.copiado {
    background: #25d366;
    color: #fff;
}
.acoes-encarte button.copiado:after {
    content: "Copiado!";
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #228b22ee;
    color: #fff;
    font-size: .86em;
    padding: 3px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px #1115;
    opacity: 1;
    pointer-events: none;
    animation: fadecopiado 1.2s;
}
@keyframes fadecopiado {
    0% { opacity: 0; transform: translateX(-50%) translateY(-8px);}
    10% { opacity: 1; }
    90% { opacity: 1;}
    100% { opacity: 0; transform: translateX(-50%) translateY(-14px);}
}
.modal-encarte {
    position: fixed;
    inset: 0;
    background: rgba(30,55,40,0.84);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
}
.modal-content-encarte {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    max-width: 99vw;
    max-height: 95vh;
    box-shadow: 0 6px 40px #111a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeinmodal 0.23s;
}
@keyframes fadeinmodal {
    from { opacity: 0; transform: scale(0.94);}
    to   { opacity: 1; transform: scale(1);}
}
.modal-content-encarte img {
    max-width: 95vw;
    max-height: 75vh;
    margin: 12px;
    border-radius: 7px;
    object-fit: contain;
    background: #fff;
}
.modal-titulo-encarte {
    color: #228b22;
    font-weight: 600;
    margin: 12px 0 10px 0;
    font-size: 1.15em;
    text-align: center;
}

/* Responsividade */
@media (max-width: 800px) {
    .grid-encartes { gap: 14px;}
    .card-encarte { width: 48vw; max-width: 190px;}
    .card-img-container { height: 110px;}
    .btn-encarte-pdf { min-width: 92px; font-size: 0.97em;}
}
@media (max-width: 480px) {
    .grid-encartes { gap: 7px;}
    .card-encarte { width: 97vw; max-width: 320px;}
    .card-img-container { height: 60vw; max-height: 180px;}
    .modal-content-encarte img { max-width: 96vw; max-height: 54vh;}
    .btn-encarte-pdf { min-width: 82px; font-size: 0.95em;}
}

/*FIM ENCARTES.PHP*/

/* === INICIO NOTÍCIAS NO INDEX === */
.noticias-container {
    position: relative;
    background: #f4f9f6;
    padding: 2rem;
    margin-bottom: 20px;
}

/* Título da seção */
.noticias-container h1 {
    color: #1a6d1a;
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 3px solid #1a6d1a;
    padding-bottom: 5px;
    width: 100%;
    text-align: left;
}

.noticias-carousel {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.noticias-wrapper {
    display: flex;
    transition: transform 0.3s cubic-bezier(.53,.14,.5,.99);
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0px;
}

.noticia-card {
    flex: 0 0 auto;
    width: 220px;
    margin: 0 10px;
    text-align: center;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1.5px 10px #1a6d1a11;
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .15s;
}
.noticia-card:hover, .noticia-card:focus {
    box-shadow: 0 6px 32px #1a6d1a30;
    transform: translateY(-4px) scale(1.025);
}

/* IMAGEM OU VÍDEO - NÃO CORTA MAIS! */
.noticia-card img,
.noticia-card video {
    width: 100%;
    height: 165px;
    object-fit: contain;  /* Mostra a mídia inteira */
    background: #f3f7f3;
    border-radius: 10px 10px 0 0;
    transition: filter 0.16s;
    display: block;
}

.noticia-card h2 {
    font-size: 1.07rem;
    margin: 12px 0 8px 0;
    color: #1a6d1a;
    font-weight: 600;
    min-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.noticias-seta-left,
.noticias-seta-right {
    position: absolute;
    top: 40%;
    background: #1a6d1a;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    display: none;
    font-size: 1.6rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px #1a6d1a18;
    transition: background .19s;
}
.noticias-seta-left:hover,
.noticias-seta-right:hover {
    background: #16754a;
}
.noticias-seta-left { left: 0; }
.noticias-seta-right { right: 0; }

.noticias-carousel:hover .noticias-seta-left,
.noticias-carousel:hover .noticias-seta-right {
    display: block;
}

.noticias-mensagem-vazia {
    font-size: 1.2rem;
    color: #a00;
    text-align: center;
    width: 100%;
    padding: 1rem;
    background: #ffefef;
    border-radius: 7px;
}

/* Pequena animação de entrada nos cards */
.animate-noticia {
    animation: fadeInUp 0.7s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px);}
    to   { opacity: 1; transform: translateY(0);}
}

/* === RESPONSIVO NOTÍCIAS NO INDEX === */
@media (max-width: 1024px) {
    .noticia-card {
        width: 200px;
        margin: 0 8px;
    }
    .noticia-card img,
    .noticia-card video {
        height: 140px;
    }
    .noticias-seta-left,
    .noticias-seta-right {
        padding: 8px 11px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .noticias-container {
        padding: 1rem;
    }
    .noticias-container h1 {
        font-size: 22px;
        text-align: center;
    }
    .noticia-card {
        width: 160px;
        margin: 0 6px;
    }
    .noticia-card img,
    .noticia-card video {
        height: 100px;
        border-radius: 6px 6px 0 0;
    }
    .noticia-card h2 {
        font-size: 1rem;
    }
    .noticias-seta-left,
    .noticias-seta-right {
        display: none !important;
    }
    .noticias-wrapper {
        overflow-x: scroll;
        padding-bottom: 10px;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .noticias-wrapper::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .noticia-card {
        width: 140px;
    }
    .noticia-card img,
    .noticia-card video {
        height: 80px;
    }
}

/* === FIM NOTÍCIAS NO INDEX === */



/* INÍCIO NOTÍCIAS.PHP */

.noticias-page-container {
    background: #f7f7f7;
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.noticias-page-header h1 {
    font-size: 2rem;
    color: #1a6d1a;
    border-bottom: 3px solid #1a6d1a;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.noticias-page-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.noticias-page-lista {
    flex: 3;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

/* CORRIGIDO: O ponto no início da classe! */
.noticias-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2% 2%; /* Horizontal e vertical iguais para facilitar cálculo */
}

/* 2 colunas desktop */
.noticia-page-card {
    box-sizing: border-box;
    flex: 0 0 49%;
    max-width: 49%;
    margin-bottom: 2%;
    background: #fff;
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px #1111;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.19s, transform 0.18s;
    min-height: 440px;
    position: relative;
    overflow: hidden;
    animation: noticiaFadeIn 0.46s;
    z-index: 1;
    border: 2px solid #fff;
}

.noticia-page-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    border: 2.5px solid #25d366;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.23s, transform 0.23s;
    transform: scale(0.97);
}

.noticia-page-card:hover, .noticia-page-card:focus-within {
    box-shadow: 0 8px 36px #25d36633;
    transform: translateY(-5px) scale(1.035);
    border-color: #25d366;
}

.noticia-page-card:hover::before, .noticia-page-card:focus-within::before {
    opacity: 1;
    animation: borderPulse 1.1s cubic-bezier(.43,.29,.32,1.35);
    transform: scale(1.03);
}

@keyframes borderPulse {
    0% { opacity: 0.1; transform: scale(0.98);}
    40% { opacity: 1; transform: scale(1.04);}
    85% { opacity: 1; transform: scale(1.01);}
    100% { opacity: 1; transform: scale(1.03);}
}

/* Mídia (imagem/vídeo): sempre caber e nunca cortar! */
.noticia-page-card img,
.noticia-page-card video {
    width: 100%;
    min-height: 160px;
    max-height: 220px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 6px #3332;
    background: #f7faf7;
    display: block;
}

.noticia-page-card h2 {
    color: #1a6d1a;
    font-size: 1.22rem;
    margin: 0.5rem 0 0.6rem 0;
    font-weight: 600;
}

.noticia-page-card p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1.2rem;
    /* flex: 1 1 auto; */
    white-space: pre-line;
}

.noticia-page-resumo {
    min-height: 84px;  /* ajuste para seu tamanho médio, ex: 4-5 linhas */
    max-height: 84px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;  /* máximo de linhas */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #222;
    white-space: normal;
}

.noticia-page-link {
    background: #1a6d1a;
    color: #fff;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
    align-self: flex-end;
    transition: background 0.19s, box-shadow 0.16s;
    box-shadow: 0 1px 4px #1a6d1a15;
    z-index: 2;
}
.noticia-page-link:hover, .noticia-page-link:focus {
    background: #0e4627;
    box-shadow: 0 2px 16px #25d36642;
}

@keyframes noticiaFadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to   { opacity: 1; transform: translateY(0);}
}

.noticias-page-msg-vazio {
    font-size: 1.15rem;
    color: #888;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.noticias-page-paginacao {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-right: 8%;
}

.noticias-page-paginacao a {
    display: inline-block;
    margin: 0 4px;
    padding: 8px 14px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.2s;
}
.noticias-page-paginacao a:hover {
    background-color: #e1e1e1;
    border-color: #999;
}
.noticias-page-paginacao a.pagina-page-ativa {
    background-color: #d60000;
    color: white;
    border-color: #d60000;
    font-weight: bold;
    pointer-events: none;
}

/* Sidebar */
.noticias-page-sidebar {
    flex: 1;
    border-left: 1px solid #ddd;
    padding-left: 1.2rem;
    padding-right: 8%;
    min-width: 230px;
}
.noticias-page-sidebar h3 {
    color: #d60000;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.noticias-page-form-busca input[type="text"] {
    width: 100%;
    padding: 0.63rem;
    border: 1px solid #bbb;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
}
.noticias-page-form-busca button {
    width: 100%;
    padding: 0.7rem;
    background: #1a6d1a;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.17s;
}
.noticias-page-form-busca button:hover {
    background: #0e4627;
}

/* RESPONSIVO: Em telas <= 1024px, um card por linha! */
@media (max-width: 1024px) {
    .noticias-page-content {
        flex-direction: column;
    }
    .noticias-page-sidebar {
        border-left: none;
        padding: 1.2rem 8%;
        margin-bottom: 2.2rem;
        order: -1;
    }
    .noticias-page-lista {
        padding-left: 2%;
        padding-right: 2%;
    }
    .noticias-page-grid {
        gap: 1.2rem 1.5%;
    }
    .noticia-page-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Tablet/mobile: full width! */
@media (max-width: 768px) {
    .noticias-page-container {
        padding: 1rem;
    }
    .noticias-page-lista {
        padding: 0;
    }
    .noticias-page-grid {
        gap: 10px 0;
    }
    .noticia-page-card {
        width: 100%;
        min-height: 240px;
        margin-bottom: 1.2rem;
    }
    .noticias-page-paginacao {
        justify-content: center;
        padding-right: 0;
    }
    .noticias-page-sidebar {
        padding: 1rem 0;
    }
    .noticia-page-card img,
    .noticia-page-card video {
        min-height: 90px;
        max-height: 130px;
    }
}

/* Mobile: texto menor, card mais compacto */
@media (max-width: 480px) {
    .noticia-page-card {
        padding: 0.7rem;
        min-height: 160px;
    }
    .noticia-page-card h2 {
        font-size: 1.07rem;
    }
    .noticia-page-card p {
        font-size: 0.9rem;
    }
    .noticias-page-header h1 {
        font-size: 1.3rem;
    }
}

/* FIM NOTÍCIAS.PHP */




/* ====== Página noticia_detalhe.php ====== */

.ndetalhe-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
}

.ndetalhe-detalhe {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.ndetalhe-titulo {
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
    color: #16754a;
    font-weight: bold;
    letter-spacing: 0.01em;
}

.ndetalhe-data {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
    font-style: italic;
}

/* Imagem de notícia */
.ndetalhe-img {
    max-width: 480px;   /* <<--- Máximo para desktop */
    width: 100%;        /* Preenche disponível até o máximo */
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px #1a6d1a15;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #f7faf7;
}

/* Vídeo de notícia */
.ndetalhe-video {
    width: 100%;
    max-width: 720px;
    min-height: 180px;
    max-height: 400px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px #1a6d1a15;
    display: block;
    background: #f5f5f5;
    object-fit: contain;
}

/* YouTube ou qualquer embed */
.ndetalhe-midia iframe {
    width: 100%;
    max-width: 720px;
    min-height: 240px;
    max-height: 400px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px #1a6d1a15;
    background: #f5f5f5;
    border: none;
    display: block;
}

/* Conteúdo da notícia */
.ndetalhe-conteudo {
    font-size: 1.13rem;
    line-height: 1.72;
    color: #313b39;
    margin-bottom: 2rem;
    /* REMOVE white-space: pre-wrap para HTML renderizar corretamente */
}

.ndetalhe-conteudo p,
.ndetalhe-conteudo ul,
.ndetalhe-conteudo ol {
    margin-bottom: 1.05em;
}

/* Botão Voltar */
.ndetalhe-voltar {
    display: inline-block;
    background-color: #16754a;
    color: #fff;
    padding: 0.62rem 1.35rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px #1a6d1a12;
    transition: background 0.2s, box-shadow 0.2s;
}

.ndetalhe-voltar:hover {
    background-color: #229d5a;
    box-shadow: 0 4px 16px #25d36640;
}

.ndetalhe-msg-vazio {
    color: #c00;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    font-size: 1.12rem;
}

/* Responsividade para noticia_detalhe.php */
@media (max-width: 768px) {
    .ndetalhe-detalhe {
        padding: 1.1rem;
    }
    .ndetalhe-titulo {
        font-size: 1.42rem;
    }
    .ndetalhe-conteudo {
        font-size: 1rem;
    }
    .ndetalhe-voltar {
        padding: 0.47rem 1rem;
        font-size: 0.97rem;
    }
    .ndetalhe-img,
    .ndetalhe-video,
    .ndetalhe-midia iframe {
        max-width: 98vw;   /* Praticamente tela toda no mobile */
        min-height: 90px;
        max-height: 180px;
    }
}

@media (max-width: 480px) {
    .ndetalhe-page-container {
        padding: 1rem 0.5rem;
    }
    .ndetalhe-img,
    .ndetalhe-video,
    .ndetalhe-midia iframe {
        min-height: 90px;
        max-height: 160px;
    }
    .ndetalhe-conteudo {
        font-size: 0.96rem;
    }
}
/* ====== Fim Página noticia_detalhe.php ====== */



/* === INICIO RECEITAS E DICAS NO INDEX (HARMONIZADO COM NOTÍCIAS) === */
.rd-container {
    position: relative;
    background: #f4f9f6;
    padding: 2rem;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Título da seção */
.rd-container h1 {
    color: #1a6d1a;
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 3px solid #1a6d1a;
    padding-bottom: 5px;
    width: 100%;
    text-align: left;
    font-weight: bold;
}

.rd-carousel {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.rd-wrapper {
    display: flex;
    transition: transform 0.3s cubic-bezier(.53,.14,.5,.99);
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0px;
}

/* CARD harmonizado */
.rd-card {
    flex: 0 0 auto;
    width: 220px;
    margin: 0 10px;
    text-align: center;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1.5px 10px #1a6d1a11;
    position: relative;
    overflow: hidden;
    transition: box-shadow .22s, transform .15s;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    align-items: stretch;
}
.rd-card:hover, .rd-card:focus {
    box-shadow: 0 6px 32px #1a6d1a30;
    transform: translateY(-4px) scale(1.025);
}

/* Imagem/Vídeo SEMPRE centralizado e sem cortar */
.rd-card img,
.rd-card video {
    width: 100%;
    min-height: 140px;
    max-height: 160px;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
    background: #f3f7f3;
    margin-bottom: 0.6rem;
    display: block;
}

/* Título igual Notícias */
.rd-card h2 {
    font-size: 1.07rem;
    margin: 10px 0 6px 0;
    color: #1a6d1a;
    font-weight: 600;
    min-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    flex: 0 0 auto;
}

.rd-seta-left,
.rd-seta-right {
    position: absolute;
    top: 40%;
    background: #1a6d1a;
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    display: none;
    font-size: 1.6rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px #1a6d1a18;
    transition: background .19s;
    z-index: 2;
}

.rd-seta-left:hover,
.rd-seta-right:hover {
    background: #16754a;
}
.rd-seta-left { left: 0; }
.rd-seta-right { right: 0; }

.rd-carousel:hover .rd-seta-left,
.rd-carousel:hover .rd-seta-right {
    display: block;
}

.rd-mensagem-vazia {
    font-size: 1.2rem;
    color: #a00;
    text-align: center;
    width: 100%;
    padding: 1rem;
    background: #ffefef;
    border-radius: 7px;
}

/* Pequena animação de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px);}
    to   { opacity: 1; transform: translateY(0);}
}
.rd-card {
    animation: fadeInUp 0.7s both;
}

/* === RESPONSIVO RECEITAS E DICAS NO INDEX === */
@media (max-width: 1024px) {
    .rd-card {
        width: 200px;
        margin: 0 8px;
    }
    .rd-seta-left,
    .rd-seta-right {
        padding: 8px 11px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .rd-container {
        padding: 1rem;
    }
    .rd-container h1 {
        font-size: 22px;
        text-align: center;
    }
    .rd-card {
        width: 160px;
        margin: 0 6px;
    }
    .rd-card h2 {
        font-size: 1rem;
    }
    .rd-seta-left,
    .rd-seta-right {
        display: none !important; /* Swipe no mobile */
    }
    .rd-wrapper {
        overflow-x: scroll;
        padding-bottom: 10px;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .rd-wrapper::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .rd-card {
        width: 140px;
    }
    .rd-card img,
    .rd-card video {
        border-radius: 6px 6px 0 0;
    }
}
/* === FIM RECEITAS E DICAS NO INDEX === */


/* === INÍCIO RECEITAS E DICAS.PHP HARMONIZADO === */

.rd-page-container {
    background: #f3f3f3;
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.rd-page-header h1 {
    font-size: 2rem;
    color: #1a6d1a;
    border-bottom: 3px solid #1a6d1a;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.rd-page-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.rd-lista {
    flex: 3;
    /* O grid harmonizado: dois cards por linha */
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2%; /* 2rem vertical, 2% horizontal */
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

.rd-item {
    box-sizing: border-box;
    flex: 0 0 49%;
    max-width: 49%;
    background: #fff;
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px #1111;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.18s, transform 0.17s;
    border: 2px solid #fff;
    z-index: 1;
}

.rd-item:hover, .rd-item:focus-within {
    box-shadow: 0 8px 36px #25d36633;
    transform: translateY(-5px) scale(1.035);
    border-color: #25d366;
}

.rd-item img, .rd-item video {
    width: 100%;
    min-height: 160px;
    max-height: 220px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 6px #3332;
    background: #f7faf7;
    display: block;
}

.rd-item h2 {
    color: #1a6d1a;
    font-size: 1.22rem;
    margin: 0.5rem 0 0.6rem 0;
    font-weight: 600;
}

.rd-item p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1.2rem;
    flex: 1 1 auto;
    white-space: pre-line;
}

.rd-link {
    background: #1a6d1a;
    color: #fff;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
    align-self: flex-end;
    transition: background 0.19s, box-shadow 0.16s;
    box-shadow: 0 1px 4px #1a6d1a15;
    z-index: 2;
    margin-top: auto;
    border: none;
    outline: none;
}
.rd-link:hover, .rd-link:focus {
    background: #0e4627;
    box-shadow: 0 2px 16px #25d36642;
}

.rd-msg-vazio {
    font-size: 1.15rem;
    color: #888;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.rd-paginacao {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-right: 8%;
}
.rd-paginacao a {
    display: inline-block;
    margin: 0 4px;
    padding: 8px 14px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.2s;
}
.rd-paginacao a:hover {
    background-color: #e1e1e1;
    border-color: #999;
}
.rd-paginacao a.pagina-ativa {
    background-color: #d60000;
    color: white;
    border-color: #d60000;
    font-weight: bold;
    pointer-events: none;
}

.rd-sidebar {
    flex: 1;
    border-left: 1px solid #ddd;
    padding-left: 1.2rem;
    padding-right: 8%;
    min-width: 230px;
}
.rd-sidebar h3 {
    color: #d60000;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}
.rd-form-busca input[type="text"] {
    width: 100%;
    padding: 0.63rem;
    border: 1px solid #bbb;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
}
.rd-form-busca button {
    width: 100%;
    padding: 0.7rem;
    background: #1a6d1a;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.17s;
}
.rd-form-busca button:hover {
    background: #0e4627;
}

/* RESPONSIVO: Em telas <= 1024px, um card por linha! */
@media (max-width: 1024px) {
    .rd-page-content {
        flex-direction: column;
    }
    .rd-sidebar {
        border-left: none;
        padding: 1.2rem 8%;
        margin-bottom: 2.2rem;
        order: -1;
    }
    .rd-lista {
        padding-left: 2%;
        padding-right: 2%;
        gap: 1.2rem 1.5%;
    }
    .rd-item {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 240px;
        margin-bottom: 1.2rem;
    }
    .rd-paginacao {
        justify-content: center;
        padding-right: 0;
    }
    .rd-sidebar {
        padding: 1rem 0;
    }
    .rd-item img,
    .rd-item video {
        min-height: 90px;
        max-height: 130px;
    }
}

@media (max-width: 480px) {
    .rd-page-container {
        padding: 1rem 0.5rem;
    }
    .rd-item h2 {
        font-size: 1.07rem;
    }
    .rd-item p {
        font-size: 0.9rem;
    }
    .rd-page-header h1 {
        font-size: 1.3rem;
    }
    .rd-item {
        padding: 0.7rem;
        min-height: 160px;
    }
}

/* === FIM RECEITAS E DICAS.PHP HARMONIZADO === */



/* ====== Página receita_detalhe.php ====== */

.rdt-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
}

.rdt-detalhe {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(26, 109, 26, 0.09);
    margin-bottom: 2rem;
}

.rdt-titulo {
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
    color: #16754a;
    font-weight: bold;
    letter-spacing: 0.01em;
}

.rdt-data {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
    font-style: italic;
}

.rdt-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px #1a6d1a15;
    display: block;
}

.rdt-conteudo {
    font-size: 1.13rem;
    line-height: 1.72;
    color: #313b39;
    margin-bottom: 2rem;
    /* Remover white-space: pre-wrap para conteúdo HTML com tags do CKEditor */
}

.rdt-voltar {
    display: inline-block;
    background-color: #16754a;
    color: #fff;
    padding: 0.62rem 1.35rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px #1a6d1a12;
    transition: background 0.2s, box-shadow 0.2s;
}

.rdt-voltar:hover {
    background-color: #229d5a;
    box-shadow: 0 4px 16px #25d36640;
}

.rdt-msg-vazio {
    color: #c00;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
    font-size: 1.12rem;
}

/* Responsividade para receita_detalhe.php */
@media (max-width: 768px) {
    .rdt-detalhe {
        padding: 1.1rem;
    }

    .rdt-titulo {
        font-size: 1.42rem;
    }

    .rdt-conteudo {
        font-size: 1rem;
    }

    .rdt-voltar {
        padding: 0.47rem 1rem;
        font-size: 0.97rem;
    }
}

@media (max-width: 480px) {
    .rdt-page-container {
        padding: 1rem 0.5rem;
    }

    .rdt-img {
        width: 100%;
        height: auto;
    }

    .rdt-conteudo {
        font-size: 0.96rem;
    }
}
/* ====== Fim Página receita_detalhe.php ====== */


/* ===== INÍCIO DEPOIMENTOS NO INDEX ===== */

.depoimentos {
    background: #6a6a6a;
    color: #fff;
    padding: 2.5rem 0 2rem 0;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.depoimentos-container {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.depoimentos h2 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 1.2rem;
    text-align: left;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.depoimentos h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    margin-top: 6px;
}

.carousel-dp {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    background: #fff1;
    border-radius: 20px;
    padding: 2.7rem 1.3rem 2.2rem 1.3rem;
    box-shadow: 0 2px 20px #0002;
    min-height: 280px;
}

.slide-dp {
    display: none;
    transition: opacity 0.48s;
    text-align: center;
}

.slide-dp.active {
    display: block;
    animation: depoimentoFadeIn 0.6s;
}

@keyframes depoimentoFadeIn {
    from { opacity: 0; transform: translateY(22px);}
    to { opacity: 1; transform: translateY(0);}
}

/* GERAL para foto de perfil do depoimento */
.slide-dp img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.4rem;
    border: 3.5px solid #25d366;
    box-shadow: 0 4px 16px #2222;
    background: #fff;
}

/* Correção para .icone-google: sobrescreve as regras acima */
.slide-dp img.icone-google,
.icone-google {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-bottom: 0 !important;
    margin-right: 6px;
    box-shadow: 0 1px 4px #2222;
    border: none;
    background: #fff;
    display: inline-block;
}

/* Texto do depoimento */
.texto-dp {
    font-style: italic;
    color: #e2e2e2;
    font-size: 1.09rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
    min-height: 60px;
    padding: 0 2vw;
}

.estrelas-dp {
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.estrelas-dp .estrela {
    color: #ffd900;
    font-size: 1.1rem;
    margin: 0 1px;
    vertical-align: -2px;
    filter: drop-shadow(0 1px 1.5px #0006);
}

.autor-dp {
    font-weight: bold;
    font-size: 1.03rem;
    color: #fff;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
}

.paginacao-dp {
    margin-top: 2.1rem;
}

.dot-dp {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot-dp.active {
    background: #25d366;
    border: 1.5px solid #fff;
}

.dot-dp:hover {
    background: #1a6d1a;
}

/* Responsivo */
@media (max-width: 700px) {
    .depoimentos-container {
        max-width: 97vw;
    }
    .carousel-dp {
        padding: 2rem 0.5rem 1.6rem 0.5rem;
    }
    .slide-dp img {
        width: 82px;
        height: 82px;
    }
    .slide-dp img.icone-google,
    .icone-google {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
        margin-right: 3px;
    }
}

@media (max-width: 600px) {
    .icone-google {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        min-height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
        margin-right: 3px;
    }
}

@media (max-width: 450px) {
    .depoimentos {
        padding: 1.1rem 0 1rem 0;
    }
    .depoimentos h2 {
        font-size: 1.18rem;
        padding-bottom: 5px;
    }
    .carousel-dp {
        min-height: 180px;
    }
    .texto-dp {
        font-size: 0.94rem;
        padding: 0 4vw;
    }
}

/* ===== FIM DEPOIMENTOS NO INDEX ===== */

/* ===== TRABALHE CONOSCO ===== */
.tc-container {
  background: #f3f3f3;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.tc-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px #1a6d1a18;
  padding: 1.8rem;
}
.tc-card h1 {
  color: #1a6d1a;
  font-size: 1.9rem;
  margin: 0 0 .4rem 0;
  border-bottom: 3px solid #1a6d1a;
  display: inline-block;
  padding-bottom: .25rem;
}
.tc-intro {
  color: #2b322f;
  margin: .6rem 0 1.2rem 0;
}
.tc-alert {
  border-radius: 8px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tc-alert-ok { background: #e7f7ee; color: #16754a; border: 1px solid #25d36655; }
.tc-alert-err { background: #fdecea; color: #a82020; border: 1px solid #e5737355; }

.tc-form { margin-top: .3rem; }
.tc-field { margin-bottom: 1rem; }
.tc-field label { display:block; font-weight:600; color:#1a6d1a; margin-bottom:.35rem; }
.tc-field input[type="text"],
.tc-field input[type="tel"],
.tc-field input[type="file"]{
  width: 100%;
  border: 1px solid #cfd7cf;
  border-radius: 8px;
  padding: .75rem .9rem;
  outline: none;
  font-size: 1rem;
  transition: border .15s, box-shadow .15s;
  background: #fff;
  color: #1a1a1a;
}
.tc-field input:focus{
  border-color:#25d366;
  box-shadow: 0 0 0 3px #25d3662a;
}
.tc-help { display:block; margin-top:.35rem; font-size:.92rem; color:#666; }

.tc-privacy {
  display:flex; align-items:flex-start; gap:.6rem;
  margin:.2rem 0 1.1rem 0; color:#2b322f;
}
.tc-privacy a { color:#1a6d1a; text-decoration:underline; }

/* Ações (botões) – alinhados, altura e largura padronizadas */
.tc-actions{
  display:flex;
  align-items:center;
  gap:.8rem;
  flex-wrap:wrap;
}

/* Zera interferência global e padroniza dimensões */
.tc-btn{
  appearance:none;
  -webkit-appearance:none;
  border:none;
  border-radius:10px;
  margin:0;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  text-decoration:none;
  cursor:pointer;

  height:48px;          /* mesma altura para ambos */
  padding:0 20px;
  min-width:180px;      /* largura mínima harmônica */
  font-weight:700;
  font-size:1rem;

  box-shadow:0 2px 8px #1a6d1a22;
  transition: background .18s, color .12s, transform .06s, box-shadow .16s;
}
.tc-btn:active { transform: translateY(1px); }

.tc-btn-primary { background:#1a6d1a; color:#fff; }
.tc-btn-primary:hover { background:#0e4627; }

.tc-btn-whatsapp { background:#25d366; color:#fff; }
.tc-btn-whatsapp:hover { background:#16754a; }

.tc-note { margin-top: 1rem; color:#667; font-size:.96rem; }

/* Honeypot oculto */
.tc-hp { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

/* Responsivo: empilha os botões e ocupa toda a largura */
@media (max-width: 560px){
  .tc-card { padding: 1.1rem .9rem; }
  .tc-actions { flex-direction: column; align-items:stretch; }
  .tc-btn { width:100%; min-width:0; }
}

/* ===== FIM TRABALHE CONOSCO ===== */