/* SECTION PARCEIROS */
.partners-section {
    padding: 48px 0;
    background-color: #ffffff;
}

.partners-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1f2a33;
}

/* LOGOS */
.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    align-items: center;
    gap: 32px;
}

.partners-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: #f7f7f7;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partners-logos a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.partners-logos img {
    max-height: 48px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.partners-logos a:hover img {
    filter: grayscale(0%);
}


/* HOVER */
.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

/* ESTADO PADRÃO */
.partner-item img {
    max-height: 60px;
    max-width: 100%;
    display: block;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 
        filter 0.4s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* LOGO EM DESTAQUE */
.partner-item.is-active img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}


/* SECTION EMPRESAS ASSOCIADAS */
.associates-section {
    padding: 56px 0;
    background-color: #ffffff;
}

.associates-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1f2a33;
}

/* GRID */
.associates-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 36px 32px;
    align-items: center;
}

/* ITEM LINK */
.associate-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* LOGOS */
.associate-item img {
    max-height: 60px;
    max-width: 100%;
    display: block;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* HOVER */
.associate-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

/* ESTADO PADRÃO */
.associate-item img {
    max-height: 60px;
    max-width: 100%;
    display: block;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 
        filter 0.4s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* LOGO EM DESTAQUE */
.associate-item.is-active img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* NEWS CAROUSEL */
.news-carousel {
    padding: 64px 0;
    background-color: #ffffff;
}

.news-slider {
    position: relative;
}

/* SLIDE */
.news-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.news-slide.is-active {
    display: grid;
}

/* CONTEÚDO */
.news-content h2 {
    font-size: 32px;
    margin: 16px 0;
    line-height: 1.2;
}

.news-content p {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 520px;
}

/* TAG */
.news-tag {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 3px solid;
}

/* CORES */
.tag-empresas { border-color: #00b3a4; }
.tag-internacional { border-color: #ff8c00; }
.tag-impostos { border-color: #00b3a4; }

/* BOTÃO */
.news-btn {
    display: inline-block;
    padding: 10px 16px;
    background-color: #00b3a4;
    color: #fff;
    text-decoration: none;
}

.news-btn.alt {
    background-color: #ff8c00;
}

/* IMAGEM */
.news-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* DOTS */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
}

.dot.is-active {
    background: #000;
}

/* PÁGINAS INTERNAS */
.page-content {
    padding: 20px 0;
}

.page-eyebrow {
  font-size: 13px;
  color: #667;
  margin: 0 0 10px;
}

.page-lead {
  font-size: 16px;
  color: #2b2f33;
}

.page-hero {
    padding: 20px 0;
}

.page-hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.page-section {
    padding: 40px 0;
}

.page-section-light {
    background-color: #f7f7f7;
}

.page-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.page-list {
    padding-left: 20px;
}

.page-list li {
    margin-bottom: 8px;
}

.page-cta {
    background-color: #f1f1f1;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background-color: #00b3a4;
    color: #fff;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .news-slide {
        grid-template-columns: 1fr;
    }
}
