/**
 * Inova Que Vende - Main Styles
 * Convertido do site estático para tema WordPress
 */

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #333333;
    --accent-yellow: #FFC107;
    --accent-yellow-light: #FFD54F;
    --light-color: #f8f9fa;
    --dark-color: #000000;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d5d5d5;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #4a4a4a;
    --gray-700: #333333;
    --gray-800: #1a1a1a;
    --gray-900: #000000;
    --white: #ffffff;
    --off-white: #fafafa;
    --dark-bg: #1a1a1a;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Screen Reader Only - Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form Labels */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    padding: 0 2rem;
}

.navbar-brand {
    font-weight: 600;
    color: var(--text-primary) !important;
    font-size: 1.4rem;
    letter-spacing: -0.3px;
    padding: 1.5rem 0;
    text-decoration: none;
}

.navbar-brand img,
.navbar-brand-img {
    max-height: 72px;
    width: auto;
    display: block;
}

.navbar-nav {
    margin-left: auto;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 1.5rem 1rem !important;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-yellow);
}

.btn-cta {
    background-color: var(--accent-yellow);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}

.btn-cta:hover {
    background-color: var(--accent-yellow-light);
    color: var(--primary-color);
    transform: none;
}

/* Mobile Bottom Navigation */
.bottom-nav {
    display: none;
}

@media (max-width: 992px) {
    .navbar {
        display: none !important;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 0.5rem 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: block;
    }

    .bottom-nav-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--gray-600);
        transition: all 0.3s ease;
        padding: 0.5rem;
        border-radius: 12px;
        position: relative;
        min-width: 60px;
    }

    .bottom-nav-item i {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
        transition: all 0.3s ease;
    }

    .bottom-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
        text-align: center;
        line-height: 1;
    }

    .bottom-nav-item:hover {
        color: var(--primary-color);
        background-color: rgba(0, 123, 255, 0.1);
        transform: translateY(-2px);
    }

    .bottom-nav-item.active {
        color: var(--primary-color);
        background-color: rgba(0, 123, 255, 0.15);
    }

    .bottom-nav-item.active i {
        transform: scale(1.1);
    }

    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--accent-yellow);
        border-radius: 2px;
    }

    body {
        padding-bottom: 80px;
    }

    .hero {
        padding-bottom: 2rem;
    }

    .section {
        padding-bottom: 2rem;
    }
}

/* Hero Section - Split Moderno */
.hero {
    background-color: var(--dark-bg);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 6rem;
    margin-top: 80px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--accent-yellow);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-white);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero {
        padding: 4rem 0;
        margin-top: 0;
        min-height: auto;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-container {
        order: 2;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Hero mobile - esconde imagem */
    .hero-image-container {
        display: none;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-split {
        gap: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.btn-primary-hero {
    background-color: var(--text-white);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    cursor: pointer;
}

.btn-primary-hero:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary-light {
    background-color: var(--text-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin: 1.5rem auto 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-light:hover {
    background-color: var(--gray-700);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.btn-primary-light:hover::before {
    left: 100%;
}

.btn-secondary-hero {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--accent-yellow);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    cursor: pointer;
}

.btn-secondary-hero:hover {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--text-white);
    border-color: var(--accent-yellow-light);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 6rem 0 4rem;
    margin-top: 80px;
    border-bottom: 4px solid var(--accent-yellow);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: center;
}

.page-header p {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-yellow);
    display: inline-block;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    height: 100%;
    position: relative;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.2s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-yellow);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.testimonial-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-yellow);
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* Testimonial Photo */
.testimonial-photo {
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-200);
}

.testimonial-avatar-placeholder {
    opacity: 0.7;
}

/* Testimonial Case Link */
.testimonial-case {
    margin-top: 1rem;
}

.btn-case {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-case:hover {
    color: var(--gray-600);
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: var(--off-white);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.social-link:hover {
    background: var(--accent-yellow);
    color: var(--primary-color);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 0.5rem 0;
}

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

/* Horário de Atendimento */
.contact-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.contact-hours h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.contact-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-hours p:last-child {
    margin-bottom: 0;
}

.contact-form {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: var(--white);
    min-height: 48px;
    box-sizing: border-box;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-yellow);
    transform: translateY(-1px);
}

.btn-submit {
    background: var(--accent-yellow);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--accent-yellow-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* WhatsApp Attendants */
.whatsapp-attendants {
    margin-top: 2rem;
    padding: 0;
}

.whatsapp-attendants-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-attendants-title i {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.whatsapp-attendants-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.whatsapp-attendants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}

.whatsapp-attendant-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.whatsapp-attendant-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.whatsapp-attendant-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.whatsapp-attendant-card:hover .whatsapp-attendant-icon {
    background: var(--accent-yellow);
}

.whatsapp-attendant-icon i {
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.whatsapp-attendant-card:hover .whatsapp-attendant-icon i {
    color: var(--primary-color);
}

.whatsapp-attendant-info {
    flex: 1;
    min-width: 0;
}

.whatsapp-attendant-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.whatsapp-attendant-message-preview {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.whatsapp-attendant-arrow {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.5;
}

.whatsapp-attendant-card:hover .whatsapp-attendant-arrow {
    color: var(--text-primary);
    opacity: 1;
    transform: translateX(3px);
}

/* WhatsApp Attendants Responsive */
@media (max-width: 768px) {
    .whatsapp-attendants {
        margin-top: 1.5rem;
    }

    .whatsapp-attendants-title {
        font-size: 1.1rem;
    }

    .whatsapp-attendants-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .whatsapp-attendant-card {
        padding: 1.25rem;
    }

    .whatsapp-attendant-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-attendant-icon i {
        font-size: 1.1rem;
    }

    .whatsapp-attendant-name {
        font-size: 0.95rem;
    }

    .whatsapp-attendant-message-preview {
        font-size: 0.8rem;
    }
}

/* Footer - Redesign Limpo */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 0;
    border-top: 3px solid var(--accent-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Brand (Coluna 1) */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img,
.footer-logo-img {
    max-height: 76px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-text i {
    font-size: 1.1rem;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--accent-yellow);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Footer Nav (Colunas 2, 3, 4) */
.footer-nav h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.6rem;
}

.footer-nav a,
.footer-nav span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

/* Footer Contact List */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-list i {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    width: 16px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-cnpj {
    color: rgba(255,255,255,0.6);
}

.footer-link-separator {
    color: rgba(255,255,255,0.3);
    margin: 0 0.25rem;
}

.footer-legal-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer-description {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo-text {
        justify-content: center;
    }

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

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-legal-links {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-link-separator {
        margin: 0 0.5rem;
    }
}

/* History Content */
.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-yellow);
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.team-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-card .position {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.brand-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-icon {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-light));
}

.brand-icon i {
    font-size: 2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-icon i {
    color: var(--primary-color);
}

.brand-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.brand-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.brand-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
    padding: 0;
}

.brand-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-features li::before {
    content: '✓';
    color: var(--accent-yellow);
    font-weight: bold;
}

.btn-brand {
    background-color: var(--accent-yellow);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.btn-brand:hover {
    background-color: var(--accent-yellow-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Segments Grid */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    justify-items: center;
}

.segment-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 300px;
}

.segment-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.segment-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.2s ease;
}

.segment-card:hover .segment-icon {
    background: var(--accent-yellow);
}

.segment-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.segment-card:hover .segment-icon i {
    color: var(--primary-color);
}

.segment-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.segment-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Industries Grid */
.industries-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.industry-icon {
    margin-bottom: 1rem;
}

.industry-icon i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.industry-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.audience-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.2s ease;
}

.audience-card:hover .audience-icon {
    background: var(--accent-yellow);
}

.audience-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.audience-card:hover .audience-icon i {
    color: var(--primary-color);
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.case-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--text-primary));
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--text-primary);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--text-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.case-title {
    flex: 1;
}

.case-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.case-title .company {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.case-content {
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
    border-left: 4px solid var(--accent-yellow);
    position: relative;
}

.case-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--text-primary);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
    font-family: serif;
}

.case-results {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.case-results h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-results h4::before {
    content: '📈';
    font-size: 1.2rem;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-list li::before {
    content: '✓';
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.stat-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Stats Grid 3 colunas */
.stats-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid-3 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
    }

    .stats-grid-3 .stat-card-dark {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    .stats-grid-3 .stat-card-dark .stat-number {
        font-size: 2rem;
    }

    .stats-grid-3 .stat-card-dark .stat-description {
        font-size: 0.85rem;
    }
}

/* Stat Card Dark (para fundo escuro) */
.stat-card-dark {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    max-width: 100%;
}

.stat-card-dark .stat-icon {
    margin-bottom: 1rem;
}

.stat-card-dark .stat-icon i {
    font-size: 2.5rem;
    color: var(--accent-yellow-light);
}

.stat-card-dark .stat-number {
    color: #fff;
}

.stat-card-dark .stat-label {
    color: rgba(255,255,255,0.8);
}

.stat-card-dark .stat-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonial Quote */
.testimonial-quote {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.testimonial-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quote cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--secondary-color));
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--text-primary);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-date i {
    color: var(--accent-yellow);
    font-size: 0.8rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--accent-yellow), var(--text-primary));
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--gray-700);
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.blog-read-more::after {
    content: '→';
    color: var(--accent-yellow);
    transition: all 0.2s ease;
}

/* Featured Article */
.featured-article {
    background: var(--off-white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid var(--gray-200);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-yellow);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-image {
    background: var(--gray-100);
    border-radius: 8px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WordPress Pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--accent-yellow);
    color: var(--primary-color);
    border-color: var(--accent-yellow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .brands-grid,
    .audience-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .page-header {
        padding: 4rem 0 2rem;
        margin-top: 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .btn-primary-light {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        margin: 1rem auto 0;
    }

    .services,
    .testimonials,
    .contact,
    .content-section {
        padding: 2rem 0;
        overflow: hidden;
    }

    .section-title {
        margin-bottom: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* === CARDS MOBILE - VERTICAL STACK === */
    .services-grid,
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin: 0;
    }

    .service-card,
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 1.5rem;
    }

    /* Outros grids que não precisam de carrossel */
    .team-grid,
    .brands-grid,
    .segments-grid,
    .audience-grid,
    .cases-grid,
    .stats-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card,
    .brand-card,
    .segment-card,
    .audience-card,
    .case-card,
    .stat-card,
    .blog-card {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0;
    }

    /* Esconder swipe hints já que não tem mais carrossel */
    .swipe-hint {
        display: none !important;
    }

    .service-icon,
    .segment-icon,
    .audience-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .service-icon i,
    .segment-icon i,
    .audience-icon i {
        font-size: 1rem;
    }

    .service-card h3,
    .segment-card h3,
    .audience-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p,
    .segment-card p,
    .audience-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .social-media {
        padding: 1.5rem 0;
    }

    .social-links {
        justify-content: center;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .social-link {
        padding: 0.6rem;
        font-size: 0.8rem;
        width: auto;
        min-width: 60px;
        max-width: 80px;
        margin: 0;
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .social-link i {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .social-link span {
        font-size: 0.7rem;
        line-height: 1;
    }

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

    .industry-card {
        padding: 1rem;
    }

    .industry-icon i {
        font-size: 1.5rem;
    }

    .industry-card h3 {
        font-size: 0.9rem;
    }

    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-article {
        padding: 1.5rem;
    }

    .featured-text h2 {
        font-size: 1.3rem;
    }

    .featured-image {
        height: 180px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .btn-primary-light {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin: 0.8rem auto 0;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-link {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        max-width: 180px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.post-content {
    color: var(--text-secondary);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content a {
    color: var(--text-primary);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--gray-700);
}

/* Legal Content (Política de Privacidade e Termos de Uso) */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-yellow);
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.legal-section ul li::before {
    content: '•';
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.legal-section ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-update {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.legal-update strong {
    color: var(--text-secondary);
    font-style: normal;
}

/* Legal Content Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 1rem 0;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner-show {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-banner-icon {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--text-white);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cookie-banner-text a:hover {
    opacity: 0.8;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-settings {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--accent-yellow);
    color: var(--dark-bg);
}

.btn-cookie-accept:hover {
    background: var(--accent-yellow-light);
    transform: translateY(-1px);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie-settings:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal-show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.cookie-settings-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-settings-modal-show .cookie-settings-content {
    transform: scale(1);
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-settings-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.cookie-settings-close:hover {
    color: var(--text-primary);
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-settings-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cookie-setting-item {
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
}

.cookie-setting-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-setting-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1rem;
}

.cookie-setting-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--text-primary);
}

.cookie-setting-label input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-setting-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--gray-200);
    color: var(--text-secondary);
    border-radius: 12px;
    font-weight: 500;
}

.cookie-setting-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 2rem;
}

.cookie-settings-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    justify-content: flex-end;
}

.btn-cookie-save,
.btn-cookie-accept-all {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-save {
    background: var(--text-primary);
    color: var(--white);
}

.btn-cookie-save:hover {
    background: var(--gray-700);
    transform: translateY(-1px);
}

.btn-cookie-accept-all {
    background: var(--gray-200);
    color: var(--text-primary);
}

.btn-cookie-accept-all:hover {
    background: var(--gray-300);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-settings {
        width: 100%;
    }

    .cookie-settings-content {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-settings-header {
        padding: 1rem;
    }

    .cookie-settings-header h2 {
        font-size: 1.25rem;
    }

    .cookie-settings-body {
        padding: 1rem;
    }

    .cookie-setting-item {
        padding: 1rem;
    }

    .cookie-setting-description {
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .cookie-settings-footer {
        flex-direction: column;
        padding: 1rem;
    }

    .btn-cookie-save,
    .btn-cookie-accept-all {
        width: 100%;
    }
}

/* ====================================
   MOBILE ENHANCEMENTS
   ==================================== */

/* Hide carousel enhancements on all screens now */
.carousel-indicators,
.swipe-hint {
    display: none !important;
}

/* 404 Error Page */
.error-404-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: var(--white);
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.error-404-icon {
    margin-bottom: 2rem;
}

.error-404-icon i {
    font-size: 5rem;
    color: var(--text-primary);
    opacity: 0.3;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -2px;
}

.error-404-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.error-404-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.error-404-actions {
    margin-bottom: 3rem;
}

.error-404-actions .btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.error-404-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.error-404-links h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-404-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.error-404-links li {
    margin: 0;
}

.error-404-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.error-404-links a:hover {
    color: var(--text-primary);
    background-color: var(--gray-100);
}

/* 404 Responsive */
@media (max-width: 768px) {
    .error-404-section {
        padding: 4rem 0;
        min-height: calc(100vh - 150px);
    }

    .error-404-content {
        padding: 1rem;
    }

    .error-404-icon i {
        font-size: 4rem;
    }

    .error-404-title {
        font-size: 5rem;
    }

    .error-404-subtitle {
        font-size: 1.5rem;
    }

    .error-404-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .error-404-links ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .error-404-links a {
        display: block;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .error-404-title {
        font-size: 4rem;
    }

    .error-404-subtitle {
        font-size: 1.25rem;
    }

    .error-404-description {
        font-size: 0.95rem;
    }
}

/* Remove fade effects that cause overflow */
@media (max-width: 768px) {
    .services::after,
    .testimonials::after,
    .content-section::after,
    .metrics-section::after {
        display: none !important;
    }

    .metrics-section {
        overflow: hidden;
    }

    .metrics-section .container {
        padding: 0 1rem;
    }
}

/* ====================================
   PAUTA 2026-06-02 - REPOSICIONAMENTO
   ==================================== */

.navbar {
    background-color: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar-brand,
.nav-link {
    color: var(--white) !important;
}

.nav-link {
    color: rgba(255,255,255,0.78) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.bottom-nav {
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bottom-nav-item {
    color: rgba(255,255,255,0.68);
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--white);
    background-color: rgba(255, 193, 7, 0.14);
}

.hero.hero-commercial {
    background:
        linear-gradient(90deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.64) 45%, rgba(6, 6, 6, 0.42) 100%),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    min-height: calc(100vh - 80px);
    padding: 8rem 0 6rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 193, 7, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.24));
    pointer-events: none;
}

.hero-content-single {
    max-width: 760px;
}

.hero-content-single .hero-description {
    max-width: 680px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
}

.section-title-narrow p {
    max-width: 720px;
}

.content-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-panel:not(.content-panel-highlight):not(.content-panel-explainer) {
    justify-content: space-evenly;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.content-panel-explainer {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    justify-content: space-between;
}

.content-panel-intro {
    display: grid;
    gap: 1rem;
}

.content-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.16);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-panel-explainer h3 {
    font-size: 1.8rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.content-panel-explainer p {
    color: var(--text-secondary);
}

.representation-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.representation-step {
    padding: 1.2rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

.representation-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.representation-step h4 {
    font-size: 1rem;
    margin-bottom: 0.55rem;
    color: var(--text-primary);
}

.representation-step p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.representation-results {
    padding-top: 0.25rem;
    border-top: 1px solid var(--gray-200);
}

.representation-results-label {
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.result-chip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.result-chip-list li {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 500;
}

.content-panel-highlight {
    background: linear-gradient(180deg, #101010 0%, #181818 100%);
    border-color: rgba(255,255,255,0.08);
    color: var(--white);
}

.content-panel-highlight h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.content-panel-highlight p {
    color: rgba(255,255,255,0.82);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    color: inherit;
    line-height: 1.6;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-yellow);
}

.services-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.service-card-left {
    text-align: left;
    max-width: none;
}

.service-card-left .service-icon {
    margin: 0 0 1.5rem;
}

.brand-chip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--text-primary);
}

.brands-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.brand-card {
    max-width: none;
}

.segments-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: none;
}

.segment-card {
    max-width: none;
}

.catalog-note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.25rem;
}

.catalog-note p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem 1.6rem;
    border-radius: 16px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
}

.page-header {
    background: linear-gradient(180deg, #0d0d0d 0%, #171717 100%);
}

@media (max-width: 992px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
    }

    .representation-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero.hero-commercial {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 768px) {
    .hero.hero-commercial {
        margin-top: 0;
        padding: 5rem 0 3rem;
        background-position: 60% center;
    }

    .hero-content-single {
        text-align: left;
    }

    .hero-highlights {
        gap: 0.5rem;
    }

    .hero-highlights span {
        font-size: 0.82rem;
        padding: 0.55rem 0.85rem;
    }

    .content-panel-explainer h3 {
        font-size: 1.5rem;
    }

    .representation-flow {
        grid-template-columns: 1fr;
    }

    .content-panel,
    .catalog-note,
    .faq-item {
        padding: 1.35rem;
    }
}

@media (max-width: 576px) {
    .brand-chip {
        width: 100%;
    }
}
