/**
 * WINNERS GASTRONOMIA - CSS BASE
 * Estilos comuns a todos os layouts
 * v2.0 - Com espaçamento e responsividade corretos
 */

/* ============================================
   CSS VARIABLES (Paleta padrão - sobrescrita por paletas)
   ============================================ */
:root {
    /* Cores primárias */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --primary-rgb: 139, 92, 246;
    
    /* Cores secundárias */
    --secondary: #D4AF37;
    --secondary-dark: #B8960C;
    --accent: #F59E0B;
    
    /* Backgrounds */
    --bg-dark: #0F0F0F;
    --bg-light: #FFFFFF;
    --bg-section: #F8F9FA;
    --bg-card: #FFFFFF;
    
    /* Textos */
    /* Ajustes de contraste para acessibilidade */
    /* Texto principal em fundos claros agora é preto puro */
    --text-dark: #000000;
    /* Texto principal em fundos escuros agora é branco puro */
    --text-light: #FFFFFF;
    /* Texto secundário um pouco mais escuro para melhor legibilidade */
    --text-muted: #4B5563;
    
    /* Overlay */
    --hero-overlay: rgba(0, 0, 0, 0.55);
    
    /* Espaçamentos */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-padding: 24px;
    --card-padding: 32px;
    --gap-lg: 48px;
    --gap-md: 32px;
    --gap-sm: 16px;
    
    /* Bordas e Sombras */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Fontes */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   RESET E BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.nav-cta {
    background: var(--primary) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 0.6rem 1.5rem !important;
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
}




@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-dark);
    border-color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS - ESPAÇAMENTO GENEROSO
   ============================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 1.1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    color: #333333; /* Cor alterada para cinza escuro */
}

/* Alternância de cores de fundo */
.section-light {
    background: var(--bg-light);
}

.section-gray {
    background: var(--bg-section);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-dark .section-title,
.section-dark .section-badge {
    color: var(--text-light);
}

.section-dark .section-text {
    color: black;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-section);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   ABOUT GALLERY
   ============================================ */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

.about-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img-1 {
    grid-column: span 2;
}

.about-img-1 img {
    height: 300px;
}

/* ============================================
   GASTRO SECTION
   ============================================ */
.section-gastro {
    background: var(--bg-section);
}

.gastro-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
color: black;
}

.gastro-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gastro-features li:last-child {
    border-bottom: none;
}

.gastro-features li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.gastro-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gastro-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gastro-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gastro-img:hover img {
    transform: scale(1.08);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.section-gallery {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-gallery .section-title,
.section-gallery .section-badge {
    color: var(--text-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.gallery-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
    background: var(--bg-section);
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 1.25rem;
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: 1rem;
    margin-right: 0.15rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION - CORRIGIDO
   ============================================ */
.section-faq {
    background: var(--bg-section);
    padding: var(--section-padding) 0;
}

.section-faq .row {
    align-items: flex-start;
}

.section-faq .col-lg-4 {
    padding-right: 3rem;
    margin-bottom: 2rem;
}

.section-faq p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.accordion {
    background: transparent;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: var(--border-radius-sm) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-card);
    color: var(--primary);
}

.accordion-button::after {
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary);
    border-color: white;
}

.cta-buttons .btn-light:hover {
    background: var(--secondary);
    color: var(--text-dark);
    border-color: var(--secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer img {
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 70px;
        --card-padding: 24px;
    }
    
    .navbar-collapse {
        background: rgba(15, 15, 15, 0.98);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-faq .col-lg-4 {
        padding-right: 15px;
    }
    
    .about-gallery {
        padding: 0;
    }
    
    .about-img-1 img,
    .about-img img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --gap-lg: 32px;
        --gap-md: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
    }
    
    .about-img-1 {
        grid-column: span 1;
    }
    
    .gastro-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 0 1rem 1rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.py-section { padding-top: var(--section-padding); padding-bottom: var(--section-padding); }

/* ============================================
   SECTION PARTNERS / CLIENTES
   ============================================ */
.section-partners {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.partner-logo img {
    max-height: 70px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.partner-placeholder i {
    font-size: 32px;
    color: white;
}

.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.partner-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .partner-item {
        padding: 16px 12px;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .partner-logo img {
        max-height: 50px;
        max-width: 100px;
    }
    
    .partner-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .partner-placeholder i {
        font-size: 24px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
}
