* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background-color: #faf8f5;
    line-height: 1.6
}

a {
    color: #e07856;
    text-decoration: none;
    transition: color .3s ease
}

a:hover {
    color: #c9603a
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

p {
    margin-bottom: 1rem
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

@media (min-width:768px) {
    .container {
        padding: 0 1.5rem
    }
}

@media (min-width:1024px) {
    .container {
        padding: 0 2rem
    }
}

/* ── Header simplificado ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.site-branding {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #333;
    text-decoration: none
}

.site-logo {
    width: 40px;
    height: 40px;
    background-color: #e07856;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px
}

.site-logo img {
    width: 75%;
    height: 75%;
    object-fit: contain
}

.header-cta {
    background-color: #e07856;
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color .3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    display: inline-block;
    text-decoration: none
}

.header-cta:hover {
    background-color: #c9603a;
    color: #fff
}

/* ── Page Hero ── */
.page-hero {
    background: linear-gradient(135deg, #fef3e6 0%, #fff8f2 100%);
    border-bottom: 1px solid #f0e0d0;
    padding: 2.5rem 0 2rem;
}

.page-hero h1 {
    font-size: 1.75rem;
    color: #222;
    margin-bottom: .4rem;
}

@media (min-width:768px) {
    .page-hero h1 {
        font-size: 2.25rem
    }
}

.page-hero .breadcrumb {
    font-size: .85rem;
    color: #888;
    display: flex;
    gap: .4rem;
    align-items: center;
    flex-wrap: wrap;
}

.page-hero .breadcrumb a {
    color: #e07856
}

.page-hero .breadcrumb span {
    color: #bbb
}

.page-hero .hero-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-top: .5rem;
    max-width: 600px;
}

/* ── Partners Grid ── */
.partners-page-content {
    padding: 3rem 0 4rem;
}

.partners-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partners-intro p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #f0e0d0;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.25, .46, .45, .94),
                box-shadow .35s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(224, 120, 86, .15);
    color: inherit;
}

.partner-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #fefcfa 0%, #fff8f2 100%);
    border-bottom: 1px solid #f5ece7;
    min-height: 200px;
}

.partner-card-logo img {
    max-height: 140px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.85);
    transition: filter .4s ease, transform .4s ease;
}

.partner-card:hover .partner-card-logo img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.partner-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.partner-card-info h3 {
    font-size: 1.15rem;
    color: #222;
    margin-bottom: .4rem;
}

.partner-card-info .partner-category {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: #e07856;
    background: #fff3ec;
    padding: .2rem .7rem;
    border-radius: 2rem;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    width: fit-content;
}

.partner-card-info p {
    color: #666;
    font-size: .9rem;
    line-height: 1.7;
    flex-grow: 1;
}

.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #e07856;
    font-weight: 600;
    font-size: .9rem;
    margin-top: .5rem;
    transition: gap .3s ease;
}

.partner-card:hover .partner-card-link {
    gap: .7rem;
}

.partner-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform .3s ease;
}

.partner-card:hover .partner-card-link svg {
    transform: translateX(2px);
}

/* ── CTA Section ── */
.partners-cta {
    background: linear-gradient(135deg, #fff3ec 0%, #fef8f4 100%);
    border: 1px solid #f0d5c5;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 1rem;
}

.partners-cta h2 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: .5rem;
}

.partners-cta p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
}

.partners-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e07856, #c9603a);
    color: #fff;
    padding: .75rem 2rem;
    border-radius: .5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
}

.partners-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 120, 86, .4);
    color: #fff;
}

/* ── Marquee (reutilizado do index) ── */
.partners-marquee-section {
    background-color: white;
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid #f0e0d0;
}

.partners-marquee-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.partners-marquee {
    display: flex;
    overflow: hidden;
    gap: 3rem;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-width: 100%;
    flex-shrink: 0;
    justify-content: flex-start;
    animation: marquee 30s linear infinite;
}

.partners-marquee:hover .marquee-track,
.partners-marquee:focus-within .marquee-track {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    flex-shrink: 0;
    outline: none;
}

.partner-logo img {
    height: 90px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.partner-logo:hover img,
.partner-logo:focus img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 4rem));
    }
}

/* ── FABs ── */
.fab-container {
    position: fixed;
    bottom: 1.75rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .85rem;
    z-index: 9999;
}

.fab-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09060 0%, #e07856 60%, #c9603a 100%);
    box-shadow: 0 4px 18px rgba(224, 120, 86, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fab-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(224, 120, 86, .75);
    color: #fff
}

.fab-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0
}

.fab-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(50, 30, 20, .88);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    white-space: nowrap;
    padding: .35rem .7rem;
    border-radius: .4rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}

.fab-btn:hover::before {
    opacity: 1
}

.fab-btn.fab-whatsapp::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(224, 120, 86, .5);
    animation: fab-pulse 2.2s ease-out infinite;
}

@keyframes fab-pulse {
    0% {
        transform: scale(1);
        opacity: .7
    }
    70% {
        transform: scale(1.35);
        opacity: 0
    }
    100% {
        transform: scale(1.35);
        opacity: 0
    }
}

/* ── Footer ── */
.site-footer {
    background: linear-gradient(135deg, #2c1810, #3d2419);
    color: rgba(255, 255, 255, .7) !important;
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: .85rem;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #e07856;
}

.footer-links {
    margin-top: .75rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card-logo {
        min-height: 160px;
        padding: 2rem 1.5rem;
    }

    .partner-card-logo img {
        max-height: 110px;
    }

    .partners-cta {
        padding: 2rem 1.5rem;
    }

    .partners-cta h2 {
        font-size: 1.25rem;
    }
}
