/* ==========================================================================
   VARIÁVEIS E RESET
   ========================================================================== */
   :root {
    /* Cores corporativas */
    --primary-color: #FF6B00;       /* Laranja Feitec */
    --secondary-color: #333333;     /* Cinza escuro */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #555555;
    --white: #ffffff;
    --black: #000000;
    
    /* Tipografia */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Espaçamentos */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 30px;
    --space-xl: 50px;
    
    /* Bordas */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Sombras */
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================================================
   ELEMENTOS GLOBAIS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

.section-title {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    position: relative;
    color: var(--secondary-color);
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--secondary-color);
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

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

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

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px; /* Aumentado para logo maior */
    margin: 0 auto;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 63px; /* Altura aumentada */
    object-fit: contain;
}

.header-contact {
    display: flex;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--secondary-color);
    font-weight: 400;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ==========================================================================
   NAVEGAÇÃO
   ========================================================================== */
.main-nav {
    background-color: var(--secondary-color);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.nav-list {
    display: flex;
    justify-content: center;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    color: var(--secondary-color);
    padding: var(--space-sm) var(--space-md);
    text-transform: none;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-sm);
}

/* ==========================================================================
   SLIDER HERO
   ========================================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-bottom: var(--space-xl);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slide-caption {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--space-lg);
    max-width: 500px;
    border-radius: var(--border-radius-md);
}

.slide-caption h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-size: 2rem;
}

.slide-caption p {
    font-size: 1.1rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 var(--space-md);
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ==========================================================================
   SEÇÃO DESTAQUES
   ========================================================================== */
.highlights {
    padding: var(--space-xl) 0;
    background-color: var(--light-gray);
}

.highlights .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.highlight-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

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

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.highlight-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--secondary-color);
}

/* ==========================================================================
   SEÇÃO PRODUTOS
   ========================================================================== */
.products-section {
    padding: var(--space-xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: var(--space-md);
    text-align: center;
    color: var(--secondary-color);
}

.product-card .btn {
    display: block;
    margin: 0 auto var(--space-md);
    width: fit-content;
}

/* ==========================================================================
   PÁGINA INSTITUCIONAL
   ========================================================================== */
.institutional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.institutional-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.institutional-content {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.institutional-text {
    flex: 1;
}

.institutional-image {
    flex: 1;
    position: relative;
}

.featured-image {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
}

.company-highlights {
    margin: var(--space-xl) 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.quality-certificates {
    margin: var(--space-xl) 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.certificate-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.certificate-item img {
    max-height: 80px;
    margin: 0 auto var(--space-md);
}

/* ==========================================================================
   PÁGINA HISTÓRIA
   ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--medium-gray);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: flex-end;
    padding-right: var(--space-md);
    z-index: 2;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: var(--space-md);
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 3;
    right: calc(50% - 50px);
    box-shadow: 0 0 0 5px var(--white), var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-year {
    left: calc(50% - 50px);
    right: auto;
}

.timeline-content {
    width: calc(50% - 80px);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-image {
    margin-bottom: var(--space-md);
}

.timeline-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
}

.history-numbers {
    margin: var(--space-xl) 0;
    text-align: center;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.number-item {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.number-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.number-label {
    color: var(--dark-gray);
    font-size: 1rem;
}

.history-video {
    margin: var(--space-xl) 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: var(--space-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   PÁGINA CONTATO
   ========================================================================== */
.contact {
    padding: var(--space-xl) 0;
}

.contact-container {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-media {
    margin-top: var(--space-xl);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
}

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

.contact-map {
    margin-top: var(--space-xl);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .header-contact {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .institutional-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .timeline-content {
        width: calc(100% - 150px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--secondary-color);
        box-shadow: var(--shadow-md);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background-color: transparent;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-caption {
        left: 5%;
        bottom: 10%;
        max-width: 90%;
    }
    
    .timeline-item, 
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: var(--space-md);
    }
    
    .timeline-year {
        left: 0;
        right: auto;
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-caption {
        padding: var(--space-md);
    }
    
    .slide-caption h2 {
        font-size: 1.5rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   PÁGINA REPRESENTANTES
   ========================================================================== */
   .representatives-section {
    padding: var(--space-xl) 0;
}

.representatives-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.filter-container, .search-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.filter-container label {
    font-weight: 500;
    color: var(--secondary-color);
}

.form-select {
    padding: var(--space-sm);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    min-width: 200px;
}

.search-container {
    position: relative;
}

#representative-search {
    padding: var(--space-sm) var(--space-lg) var(--space-sm) var(--space-sm);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    min-width: 250px;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

.map-container {
    position: relative;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.brasil-map {
    max-width: 600px;
    margin: 0 auto;
    filter: grayscale(20%);
    opacity: 0.8;
}

.map-region {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-region:hover {
    opacity: 0.7;
}

/* Posicionamento aproximado das regiões no mapa */
.map-region[data-region="sul"] {
    width: 15%; height: 20%;
    bottom: 25%; left: 40%;
    background-color: rgba(0, 100, 255, 0.2);
}
.map-region[data-region="sudeste"] {
    width: 10%; height: 15%;
    bottom: 35%; left: 50%;
    background-color: rgba(0, 200, 100, 0.2);
}
/* Adicionar outras regiões conforme necessário */

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.representative-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-header {
    padding: var(--space-md);
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.region-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: bold;
}

.region-badge.sul { background-color: #4CAF50; }
.region-badge.sudeste { background-color: #2196F3; }
.region-badge.centro-oeste { background-color: #FFC107; color: var(--secondary-color); }
.region-badge.nordeste { background-color: #F44336; }
.region-badge.norte { background-color: #9C27B0; }

.card-body {
    padding: var(--space-md);
    display: flex;
    gap: var(--space-md);
}

.representative-info {
    flex: 1;
}

.representative-info h4 {
    margin-bottom: var(--space-sm);
    color: var(--secondary-color);
}

.representative-info p {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.representative-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.representative-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--medium-gray);
}

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

.card-footer {
    padding: var(--space-md);
    background-color: var(--light-gray);
    display: flex;
    gap: var(--space-sm);
}

.btn-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
}

.become-representative {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-top: var(--space-xl);
}

/* ==========================================================================
   PÁGINA PRODUTOS
   ========================================================================== */
.products-main-section {
    padding: var(--space-xl) 0;
}

.products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.btn-overlay {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.category-info {
    padding: var(--space-md);
}

.category-info h2 {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.category-info p {
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.category-features span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.category-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.products-features {
    margin: var(--space-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.products-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.products-cta h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

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

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

.btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .representatives-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .card-body {
        flex-direction: column;
    }
    
    .representative-image {
        margin: 0 auto;
    }
    
    .products-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: var(--space-md);
    }
}

/* ==========================================================================
   PÁGINA HISTÓRIA
   ========================================================================== */
   .company-history {
    padding: var(--space-xl) 0;
}

.history-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.timeline-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--primary-color), 
        var(--secondary-color));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: flex-end;
    padding-right: var(--space-lg);
    z-index: 2;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: var(--space-lg);
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 3;
    right: calc(50% - 50px);
    box-shadow: 0 0 0 8px var(--white), var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-year {
    left: calc(50% - 50px);
    right: auto;
}

.timeline-content {
    width: calc(50% - 80px);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--white);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-image {
    margin-bottom: var(--space-md);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
}

.timeline-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--space-sm);
    font-size: 0.8rem;
    text-align: center;
}

.timeline-title {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.timeline-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.timeline-list {
    margin: var(--space-md) 0;
    padding-left: var(--space-md);
}

.timeline-list li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
}

.timeline-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.timeline-highlights {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.highlight-item {
    flex: 1;
    text-align: center;
    padding: var(--space-sm);
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
}

.highlight-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.highlight-text {
    font-size: 0.9rem;
}

.milestones {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.milestone {
    background: var(--light-gray);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.milestone i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.quality-improvement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.improvement-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
}

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

.improvement-item h4 {
    margin-bottom: var(--space-xs);
    color: var(--secondary-color);
}

.improvement-item p {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-color);
}

.future-vision {
    background: var(--light-gray);
    padding: var(--space-md);
    border-radius: var(--border-radius-sm);
    margin-top: var(--space-lg);
}

.future-vision h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

.future-vision ul {
    padding-left: var(--space-md);
}

.future-vision li {
    margin-bottom: var(--space-sm);
    position: relative;
}

.future-vision li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Seção de Números */
.history-numbers-section {
    margin: var(--space-xl) 0;
    text-align: center;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.number-card {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.number-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.number-label {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* Seção de Vídeo */
.history-video-section {
    margin: var(--space-xl) 0;
}

.video-wrapper {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    align-items: center;
}

.video-container {
    flex: 2;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    flex: 1;
}

.video-caption p {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

/* Responsividade */
@media (max-width: 992px) {
    .timeline-content {
        width: calc(100% - 150px);
    }
    
    .video-wrapper {
        flex-direction: column;
    }
    
    .video-caption {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .timeline-progress-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-year {
        left: 0;
        right: auto;
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-highlights {
        flex-direction: column;
    }
    
    .quality-improvement {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }
}

/* Estilos para a página institucional atualizada */
.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.values-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.institutional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.institutional-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.institutional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .institutional-grid {
        grid-template-columns: 1fr;
    }
    
    .institutional-content {
        flex-direction: column;
    }
    
    .institutional-image {
        margin-top: 30px;
    }
}

/* Estilos para a página de Matrizes e Moldes */
.feature-box {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-applications {
    margin: 50px 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.application-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

.application-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.application-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.spec-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.spec-item h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.cta-section {
    text-align: center;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-top: 50px;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 12px 25px;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}