    /* 
* CAUCHO BORRACHAS - Estilos Principais
* Desenvolvido por: Manus AI
* Data: Junho/2025
*/

/* ===== VARIÁVEIS ===== */
:root {
    /* Cores Principais */
    --primary-color: #e63946;     /* Vermelho */
    --secondary-color: #1d3557;   /* Azul escuro */
    --accent-color: #f1faee;      /* Branco suave */
    --dark-color: #1d3557;        /* Azul escuro */
    --light-color: #f1faee;       /* Branco suave */
    --gray-color: #8d99ae;        /* Cinza */
    --success-color: #2a9d8f;     /* Verde */
    --warning-color: #e9c46a;     /* Amarelo */
    --danger-color: #e63946;      /* Vermelho */
    
    /* Tipografia */
    --font-family: 'Roboto', sans-serif;
    --heading-font-weight: 700;
    --body-font-weight: 400;
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Bordas */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    
    /* Transições */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Container */
    --container-width: 1200px;
}

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

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

body {
    font-family: var(--font-family);
    font-weight: var(--body-font-weight);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--heading-font-weight);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
}

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

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

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

button {
    cursor: pointer;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

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

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

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

/* ===== BOTÕES ===== */
.btn-primary,
.btn-secondary,
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #d32836;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #152843;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-button:hover {
    background-color: #d32836;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== HEADER ===== */
.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    max-height: 150px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 var(--spacing-sm);
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition-normal);
}

.whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.whatsapp-header:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== BANNER ===== */
.hero-banner {
    position: relative;
    height: 900px;
    overflow: hidden;
}

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

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--gray-color);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--gray-color);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: var(--spacing-xl) 0;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: var(--spacing-xl) 0;
}

.featured-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.product-details {
    margin-bottom: 1rem;
}

.product-details p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* ===== CATALOG ITEM ===== */
.catalog-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

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

.catalog-image {
    height: 200px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.catalog-code, .catalog-brands {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.catalog-info .btn-primary {
    margin-top: auto;
}

/* ===== CATALOG CARD ===== */
.catalog-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    padding: var(--spacing-md);
}

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

.catalog-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.brand-logo {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
}

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

.catalog-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

/* ===== NEWS CARD ===== */
.news-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: var(--spacing-md);
}

.news-date {
    display: block;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

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

.news-link i {
    transition: var(--transition-fast);
}

.news-link:hover i {
    transform: translateX(3px);
}

/* ===== FEATURED NEWS ===== */
.featured-news-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    margin-bottom: var(--spacing-xl);
}

.featured-news-image {
    flex: 0 0 40%;
    overflow: hidden;
}

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

.featured-news-content {
    flex: 0 0 60%;
    padding: var(--spacing-lg);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    flex: 0 0 60%;
}

.about-image {
    flex: 0 0 40%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background-color: #f8f9fa;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.badges-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.badge-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: var(--spacing-md);
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.badge-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
    margin: var(--spacing-xl) 0;
    border-radius: var(--border-radius-lg);
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-md);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background-color: #e9ecef;
}

.filter-btn.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* ===== SEARCH AND FILTERS ===== */
.search-section {
    margin-bottom: var(--spacing-lg);
}

.search-container {
    display: flex;
    gap: 0.5rem;
}

.search-container input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-md);
}

.search-container button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-container button:hover {
    background-color: #152843;
}

.catalog-filters {
    margin-bottom: var(--spacing-lg);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-sm);
    min-width: 200px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-xl);
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-sm);
    background-color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pagination-btn:hover {
    background-color: #f8f9fa;
}

.pagination-btn.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-btn.next {
    width: auto;
    padding: 0 0.75rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    margin: var(--spacing-xl) 0;
}

.newsletter-container {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: center;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius-md);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: var(--spacing-xl) 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4,
.footer-info h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #adb5bd;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #adb5bd;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
}

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

.footer-info {
    flex: 1;
    min-width: 200px;
}

.footer-info p {
    color: #adb5bd;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    text-align: center;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-floating a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.whatsapp-floating a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===== MODAL FORMSPREE (CONTATO / WHATSAPP) ===== */
.formspree-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.formspree-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.formspree-modal {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.formspree-modal-overlay.active .formspree-modal {
    transform: scale(1);
}
.formspree-modal-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.formspree-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--secondary-color);
}
.formspree-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    line-height: 1;
}
.formspree-modal-close:hover {
    color: var(--primary-color);
}
.formspree-modal-body {
    padding: var(--spacing-lg);
}
.formspree-modal-body .form-group {
    margin-bottom: var(--spacing-md);
}
.formspree-modal-body label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    color: #333;
}
.formspree-modal-body input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    box-sizing: border-box;
}
.formspree-modal-body input:focus {
    outline: none;
    border-color: var(--secondary-color);
}
.formspree-modal-body button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: var(--transition-normal);
}
.formspree-modal-body button[type="submit"]:hover {
    background: #1da851;
}
.formspree-modal-body .form-success-message {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    display: none;
}
.formspree-modal-body.form-submitted .form-fields-wrap {
    display: none;
}
.formspree-modal-body.form-submitted .form-success-message {
    display: block;
}
.formspree-modal-body .form-success-message p {
    margin: 0 0 var(--spacing-md);
    font-size: 1.05rem;
    color: #333;
}
.formspree-modal-body .form-success-message .btn-close-msg {
    padding: 0.5rem 1.25rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
}

/* ===== GRIDS ===== */
.products-grid,
.catalog-grid,
.catalogs-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* ===== SECTION FOOTER ===== */
.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-timeline {
    margin: var(--spacing-xl) 0;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--spacing-lg);
    border-left: 3px solid var(--primary-color);
}

.timeline-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-values {
    margin: var(--spacing-xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* ===== NO RESULTS MESSAGE ===== */
.no-results {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: #f8f9fa;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-lg) 0;
}



/* ===== FEATURES FULL WIDTH LAYOUT ===== */
.features-full-width {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card-large {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(230, 57, 70, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
}

.feature-card-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.2);
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex: 1;
}

.feature-icon-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d32836 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    position: relative;
}

.feature-icon-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-icon-large i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

.feature-icon-large h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #000000; /* vermelho institucional */
    margin: 0;
    text-align: center;
}


.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #152843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(29, 53, 87, 0.3);
    position: relative;
}

.feature-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animação para os cards */
.feature-card-large:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

.feature-card-large:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade para os cards full-width */
@media (max-width: 768px) {
    .feature-card-large {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
        min-height: auto;
    }
    
    .feature-content {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    
    .feature-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-large i {
        font-size: 1.75rem;
    }
    
    .feature-text h3 {
        font-size: 1.25rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .features-full-width {
        gap: var(--spacing-md);
    }
    
    .feature-card-large {
        padding: var(--spacing-md);
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-large i {
        font-size: 1.5rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
    
    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


/* ===== ABOUT INTRO SECTION (QUEM SOMOS) ===== */
.about-intro-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.mission-vision-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    position: relative;
}

.mission-vision-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.mission-vision-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mission-card-compact {
    background: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mission-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-card-compact:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.2);
}

.mission-card-compact .card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d32836 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.mission-card-compact .card-icon i {
    font-size: 1.25rem;
    color: white;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-content ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-content ul li {
    margin-bottom: 0.3rem;
}

.about-intro-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-lg);
    color: white;
    text-align: center;
}

.image-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsividade para a seção about-intro */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-intro-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .mission-vision-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .mission-card-compact {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .about-intro-image {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .about-intro-section {
        padding: var(--spacing-lg) 0;
    }
    
    .mission-vision-content h2 {
        font-size: 1.75rem;
    }
    
    .mission-card-compact {
        padding: var(--spacing-md);
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p,
    .card-content ul {
        font-size: 0.9rem;
    }
    
    .about-intro-image {
        height: 250px;
    }
    
    .image-overlay {
        padding: var(--spacing-md);
    }
    
    .image-overlay h4 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.85rem;
    }
}


/* ===== ABOUT HISTORY SECTION (NOSSA HISTÓRIA) ===== */
.about-history {
    padding: var(--spacing-xl) 0;
    background: white;
}

.about-history h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    text-align: center;
    position: relative;
}

.about-history h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.about-history-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.about-history-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 250px;
}

.about-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.about-history-text {
    padding-left: var(--spacing-lg);
}

.about-history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

.about-history-text p:last-child {
    margin-bottom: 0;
}

/* ===== QUALITY COMMITMENT SECTION (COMPROMISSO COM A QUALIDADE) ===== */
.quality-commitment {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(230, 57, 70, 0.1);
}

.quality-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.quality-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    position: relative;
}

.quality-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.quality-intro-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.quality-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.quality-intro-text p:last-child {
    margin-bottom: 0;
}

/* Responsividade para about-history */
@media (max-width: 1024px) {
    .about-history-grid {
        grid-template-columns: 250px 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-history-image {
        height: 220px;
    }
    
    .about-history-text {
        padding-left: var(--spacing-md);
    }
    
    .about-history-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-history-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-history-image {
        height: 200px;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .about-history-text {
        padding-left: 0;
        text-align: center;
    }
    
    .about-history-text p {
        text-align: justify;
    }
    
    .about-history h2 {
        font-size: 2rem;
    }
    
    .quality-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-history {
        padding: var(--spacing-lg) 0;
    }
    
    .quality-commitment {
        padding: var(--spacing-lg) 0;
    }
    
    .about-history h2,
    .quality-intro h2 {
        font-size: 1.75rem;
    }
    
    .about-history-text p,
    .quality-intro-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-history-image {
        height: 180px;
    }
    
    .quality-intro-text {
        padding: 0 var(--spacing-sm);
    }
}



.certificacoes {
  background: #f8f9fa;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.cert-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.cert-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.cert-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 70px auto;
  flex-wrap: wrap;
}

.cert-row.reverse {
  flex-direction: row-reverse;
}

.cert-text {
  flex: 1;
  min-width: 320px;
}

.cert-text h2 {
  font-size: 1.8rem;
  color: #004a99;
  margin-bottom: 15px;
}

.cert-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.cert-img {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 320px;
}

.cert-img img {
  max-width: 250px;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
}

.badges {
  margin-top: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 8px;
}

.badge.blue {
  background-color: #e3f0ff;
  color: #004a99;
}

.badge.green {
  background-color: #e4f5ec;
  color: #006b34;
}

.badge.gray {
  background-color: #eeeeee;
  color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
  .cert-row {
    flex-direction: column;
    text-align: center;
  }
  .cert-row.reverse {
    flex-direction: column;
  }
  .cert-text h3 {
    margin-top: 20px;
  }
  .cert-text {
    order: 2;
  }
  .cert-img {
    order: 1;
  }
}

/* ===== MISSÃO, VISÃO E VALORES (REESTRUTURADO) ===== */
.mission-vision-header {
  margin-bottom: var(--spacing-xl);
}

.mission-vision-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.mission-vision-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.mission-subtitle {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--spacing-lg);
  justify-items: stretch;
}

.mission-card-compact.full {
  grid-column: 1 / -1;
}

.mission-card-compact {
  background: white;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.mission-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 57, 70, 0.2);
}

.mission-card-compact .card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d32836 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.mission-card-compact .card-icon i {
  font-size: 1.5rem;
  color: white;
}

.mission-card-compact .card-content h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mission-card-compact .card-content p,
.mission-card-compact .card-content ul {
  color: var(--gray-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.mission-card-compact ul {
  padding-left: 1.2rem;
  list-style: disc;
}

@media (max-width: 768px) {
  .mission-vision-header h2 {
    font-size: 2rem;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .mission-card-compact {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .mission-card-compact .card-content {
    text-align: center;
  }
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.instagram-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.instagram-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-section .section-header h2 {
    color: #262626;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.instagram-section .section-header p {
    color: #8e8e8e;
    font-size: 14px;
    font-weight: 400;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.instagram-card {
    display: block;
    background-color: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.instagram-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-card-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #efefef;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    flex-shrink: 0;
}

.instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-username {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.instagram-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #efefef;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-card-footer {
    padding: 12px 16px;
    border-top: 1px solid #efefef;
}

.instagram-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instagram-action-btn {
    background: none;
    border: none;
    padding: 0;
    color: #262626;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.instagram-action-btn i {
    display: block;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

.instagram-cta-button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.instagram-cta-button:hover {
    opacity: 0.8;
    transform: none;
    box-shadow: none;
}

/* Responsive Instagram Section */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instagram-card {
        max-width: 100%;
    }
    
    .instagram-action-btn {
        font-size: 22px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

