/* ==============================
   Nossa Equipe - Grid de cartões
   ============================== */
.equipe-section .equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Responsividade: 2 colunas em tablets, 1 em mobile */
@media (max-width: 992px) {
    .equipe-section .equipe-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .equipe-section .equipe-grid {
        grid-template-columns: 1fr;
    }
}

/* Reset e base */

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


/* Padronização global de inputs e selects */

input,
select,
textarea {
    padding: 15px 20px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ec6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

input:hover,
select:hover,
textarea:hover {
    border-color: #ec6608;
}

select {
    cursor: pointer;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

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


/* Header */

.site-header {
    background: rgba(236, 102, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(236, 102, 8, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 24px;
    position: relative;
}

.logo img {
    height: 45px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img:hover {
    transform: scale(1.02);
}

.main-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 16px;
    position: relative;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    letter-spacing: 0.02em;
}

.main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.main-nav ul li a.active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
}

.main-nav ul li a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    border-radius: 1px;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 60%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 8px 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.header-spacer {
    height: 70px;
}


/* Hero Section */

.hero-section {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.9) 0%, rgba(236, 102, 8, 0.8) 100%);
    color: #fff;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('../assets/images/banner-inicial.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.6) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-title.animated {
    opacity: 1;
    transform: none;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.hero-subtitle.animated {
    opacity: 1;
    transform: none;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s 0.6s;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons.animated {
    opacity: 1;
    transform: none;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #ec6608;
    color: #fff;
}

.btn-primary:hover {
    background: #d55a07;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #0a1e2b;
    border: 2px solid #ec6608;
}

.btn-secondary:hover {
    background: #ec6608;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    padding: 8px 16px;
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
    transform: none;
    box-shadow: none;
}


/* Feedback visual para botões clicados */

.btn.clicked {
    transform: scale(0.95);
    opacity: 0.8;
    transition: all 0.1s ease;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 1.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(12px) rotate(45deg);
    }
}


/* Mapa */

.mapa-section {
    padding: 50px 0 80px 0;
    background: #f8f9fa;
}

.mapa-localizacao-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
}

.mapa-localizacao-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mapa-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.mapa-localizacao-section .mapa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.mapa-interativo {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mapa-localizacao-section .mapa-interativo {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 0 auto;
}

.mapa-info {
    flex: 1;
    padding: 0 20px;
}

.mapa-localizacao-section .mapa-info {
    text-align: center;
    margin-top: 20px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: fit-content;
}

.info-card h3 {
    color: #0a1e2b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.stats-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 16px;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec6608;
}

.stat-label {
    color: #0a1e2b;
    font-size: 1rem;
}


/* Customização do Leaflet */


/* Ocultar elementos de atribuição do Leaflet */

.leaflet-control-attribution {
    display: none !important;
}

.leaflet-control-attribution a {
    display: none !important;
}

.leaflet-control-attribution.leaflet-control {
    display: none !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
}

.popup-content {
    padding: 0;
    max-width: 280px;
}

.popup-header {
    background: #ec6608;
    color: white;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    margin: 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.popup-body {
    padding: 20px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.popup-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.popup-info {
    margin-bottom: 15px;
}

.popup-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.popup-info strong {
    color: #0a1e2b;
}

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

.popup-btn {
    background: #ec6608;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.popup-btn:hover {
    background: #d55a07;
    color: white;
    text-decoration: none;
}

.leaflet-container a {
    color: #ffffff !important;
}

.leaflet-container a span {
    color: #000000 !important;
}


/* Estilização do controle de tela cheia */

.leaflet-control-fullscreen {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    margin: 10px !important;
}

.leaflet-control-fullscreen a {
    background: #ffffff !important;
    color: #0a1e2b !important;
    border: none !important;
    border-radius: 6px !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.leaflet-control-fullscreen a:hover {
    background: #ec6608 !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}

.leaflet-control-fullscreen a:before {
    content: "⛶" !important;
    font-size: 18px !important;
}

.leaflet-control-fullscreen a.leaflet-fullscreen-on:before {
    content: "⛶" !important;
    font-size: 18px !important;
}


/* Estilização do ícone do caminhão basculante */

.dump-truck-icon {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dump-truck-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    background: rgba(255, 255, 255, 1);
}

.dump-truck-icon img {
    border-radius: 50%;
    transition: all 0.3s ease;
}


/* Estilização do ícone do prédio */

.building-icon {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.building-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    background: rgba(255, 255, 255, 1);
}

.building-icon img {
    border-radius: 50%;
    transition: all 0.3s ease;
}


/* Vantagens, Cards, Grids, etc. */

.vantagens-section,
.frota-section,
.cta-section,
.sobre-section,
.valores-section,
.diferenciais-section,
.equipe-section,
.equipamentos-section,
.filtros-section,
.contato-section {
    padding: 20px 0;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1e2b;
}

.section-description {
    color: #555;
    font-size: 1.1rem;
}

.vantagens-grid,
.valores-grid,
.equipe-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.vantagem-card,
.valor-card,
.equipe-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: center;
    width: 280px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.vantagem-card.animated,
.valor-card.animated,
.equipe-card.animated {
    opacity: 1;
    transform: none;
}

.vantagem-card:hover,
.valor-card:hover,
.equipe-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ec6608;
}

.vantagem-icon,
.valor-icon,
.equipe-avatar {
    font-size: 3rem;
    color: #ec6608;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.valor-card:hover .valor-icon,
.equipe-card:hover .equipe-avatar {
    transform: scale(1.1);
    color: #d55a07;
}

.valor-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1e2b;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.valor-card:hover h3 {
    color: #ec6608;
}

.valor-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.valor-detalhes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.valor-detalhes span {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.valor-card:hover .valor-detalhes span {
    color: #ec6608;
}


/* Stats Section */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.stats-section .stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 102, 8, 0.1);
}

.stats-section .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 102, 8, 0.2);
}

.stats-section .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.stats-section .stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stats-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ec6608;
    margin-bottom: 10px;
    display: block;
}

.stats-section .stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}


/* Categorias Section */

.categorias-section {
    padding: 50px 0 100px 0;
    background: white;
}

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

.categoria-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 102, 8, 0.1);
    position: relative;
    overflow: hidden;
    display: flex; /* Permite fixar o botão no rodapé do cartão */
    flex-direction: column; /* Organiza conteúdo em coluna */
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ec6608, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.categoria-card:hover::before {
    transform: scaleX(1);
}

.categoria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(236, 102, 8, 0.15);
}

.categoria-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.categoria-card:hover .categoria-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Ajustes específicos para Iconify dentro do bloco do ícone */
.categoria-icon iconify-icon {
    width: 64px;
    height: 64px;
    color: inherit; /* herda o branco do container para manter contraste */
    display: inline-block;
}

/* Padroniza SVG/IMG usados como ícones dentro do container */
.categoria-icon svg,
.categoria-icon img {
    width: 64px;
    height: 64px;
    display: inline-block;
}

.categoria-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.categoria-card:hover h3 {
    color: #ec6608;
}

.categoria-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.categoria-beneficios {
    list-style: none;
    margin-bottom: 25px;
}

.categoria-beneficios li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.categoria-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ec6608;
    font-weight: bold;
}

.categoria-link {
    color: #ec6608;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto; /* Empurra o botão para o rodapé do cartão */
    align-self: flex-start; /* Mantém alinhado à esquerda dentro do flex */
}

.categoria-link:hover {
    color: #ff8c42;
    transform: translateX(5px);
}


/* Serviços Section */

.servicos-section {
    padding: 10px 0 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.servicos-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    margin-top: 40px;
}

.servicos-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.servicos-text p {
    color: #666;
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Centraliza apenas o subtítulo (parágrafo direto sob o h2) */
.servicos-text > p {
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.servicos-lista {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servico-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(236, 102, 8, 0.15);
}

.servico-item i {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(236, 102, 8, 0.25);
}
.servico-conteudo h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1e2b;
    margin: 6px 0 6px;
}
.servico-conteudo p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.servico-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.servico-item p {
    color: #666;
    margin: 0;
    font-size: 16px;
}

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

.servicos-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    box-shadow: 0 20px 40px rgba(236, 102, 8, 0.3);
}

.servicos-image .image-placeholder p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}


/* Depoimentos Section */

.depoimentos-section {
    padding: 50px 0 100px 0;
    background: white;
}

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

.depoimento-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 102, 8, 0.1);
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(236, 102, 8, 0.15);
}

.depoimento-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffd700;
    font-size: 18px;
}

.depoimento-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.autor-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.autor-info span {
    color: #666;
    font-size: 14px;
}


/* Parceiros Section */

.parceiros-section {
    padding: 50px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.parceiro-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 102, 8, 0.1);
    text-align: center;
    min-height: 162px;
}

.parceiro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 102, 8, 0.2);
}

.parceiro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    height: 100%;
}

.parceiro-logo i {
    font-size: 48px;
    color: #ec6608;
}

.parceiro-logo h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.parceiro-img {
    max-width: 120px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.parceiro-card:hover .parceiro-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* Frota e Equipamentos */

.frota-content,
.sobre-content,
.diferenciais-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.frota-text,
.sobre-text,
.diferenciais-text {
    flex: 1 1 400px;
}

.frota-image,
.sobre-image,
.diferenciais-image {
    flex: 1 1 400px;
    text-align: center;
}

.sobre-descricao {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
}

/* Centraliza apenas o título "Nossa História" dentro da seção sobre */
.sobre-text .section-title {
    text-align: center;
}

.sobre-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1e2b;
    margin: 16px 0 10px;
}

.sobre-pilares {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 16px;
}

.sobre-pilares li {
    position: relative;
    padding-left: 24px;
    color: #495057;
    font-weight: 600;
}

.sobre-pilares li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ec6608;
    font-weight: 700;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.sobre-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sobre-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
/* Centralizar botão da seção de serviços */
.servicos-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.sobre-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec6608;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.sobre-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.equipment-showcase {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.equipment-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.image-placeholder {
    width: 120px;
    height: 80px;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 2rem;
    color: #bbb;
}


/* Equipamentos */

.filtros-section {
    padding: 20px 0;
    background: #ffffff;
}

.filtros-content {
    padding: 24px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

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

.filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    align-items: end;
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filtro-grupo label {
    font-weight: 600;
    color: #0a1e2b;
    font-size: 0.95rem;
}


/* Estilos específicos para filtros mantidos apenas para labels */

.equipamentos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.resultados-info {
    font-size: 14px;
    font-weight: 600;
}

.resultados-info span {
    color: #ec6608;
    font-weight: 700;
}

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

.ordenacao label {
    font-weight: 600;
    color: #0a1e2b;
    font-size: 0.95rem;
}

.equipamentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.equipamento-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 320px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid #e9ecef;
}

.equipamento-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.equipamento-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ec6608;
}

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

.equipamento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.equipamento-card:hover .equipamento-image img {
    transform: scale(1.1);
}

.equipamento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.7) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

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

.btn-detalhes {
    background: #fff;
    color: #0a1e2b;
    border: 2px solid #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-detalhes:hover {
    background: #ec6608;
    color: #fff;
    border-color: #ec6608;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.equipamento-info {
    padding: 24px;
}

.equipamento-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1e2b;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.equipamento-card:hover .equipamento-info h3 {
    color: #ec6608;
}

.equipamento-descricao {
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.equipamento-especificacoes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.especificacao {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.equipamento-card:hover .especificacao {
    background: #ec6608;
    color: #fff;
    border-color: #ec6608;
}

.equipamento-acoes {
    margin-top: 16px;
}

.btn-orcamento {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ec6608;
}

.btn-orcamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 102, 8, 0.3);
}


/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 30, 43, 0.7);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90vw;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-categoria {
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.modal-header h2 {
    color: #0a1e2b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.modal-equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.modal-equipamento-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modal-equipamento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ec6608;
}

.modal-equipamento-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.modal-equipamento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.modal-equipamento-info {
    padding: 20px;
}

.modal-equipamento-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1e2b;
    margin-bottom: 10px;
}

.modal-equipamento-descricao {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.modal-equipamento-especificacoes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.modal-especificacao {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.modal-equipamento-acoes {
    margin-top: 15px;
}

.btn-orcamento-modal {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #ec6608;
}

.btn-orcamento-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 102, 8, 0.3);
}


/* Responsividade para o modal de categoria */

@media (max-width: 768px) {
    .modal-categoria {
        max-width: 95vw;
        margin: 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

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

    .modal-equipamentos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-equipamento-card {
        margin-bottom: 15px;
    }

    .modal-equipamento-info {
        padding: 15px;
    }

    .modal-equipamento-info h3 {
        font-size: 1.1rem;
    }

    .modal-equipamento-descricao {
        font-size: 0.85rem;
    }

    .modal-especificacao {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .modal-categoria {
        padding: 20px;
    }

    .modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-equipamento-image {
        height: 150px;
    }

    .modal-equipamento-info {
        padding: 12px;
    }

    .modal-equipamento-especificacoes {
        gap: 6px;
    }

    .modal-especificacao {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
}

.modal .close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    color: #0a1e2b;
    cursor: pointer;
}

.loading {
    text-align: center;
    color: #0a1e2b;
    font-size: 1.2rem;
}


/* Página de Contatos */

.contato-hero {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.85) 0%, rgba(236, 102, 8, 0.75) 100%);
    color: #fff;
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.contato-hero .hero-background {
    background-image: url('../assets/images/banner-contatos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
}

.contato-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.6) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contato-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contato-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.contato-hero .page-title.animate-fade-in {
    opacity: 1;
    transform: none;
}

.contato-hero .page-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.contato-hero .page-subtitle.animate-fade-in-delay {
    opacity: 1;
    transform: none;
}


/* Banner de Equipamentos */

.equipamentos-hero {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.85) 0%, rgba(236, 102, 8, 0.75) 100%);
    color: #fff;
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.equipamentos-hero .hero-background {
    background-image: url('../assets/images/banner-equipamentos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6) contrast(1.2);
}

.equipamentos-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.6) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.equipamentos-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.equipamentos-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.equipamentos-hero .page-title.animate-fade-in {
    opacity: 1;
    transform: none;
}

.equipamentos-hero .page-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.equipamentos-hero .page-subtitle.animate-fade-in-delay {
    opacity: 1;
    transform: none;
}


/* Banner Institucional */

.institucional-hero {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.85) 0%, rgba(236, 102, 8, 0.75) 100%);
    color: #fff;
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.institucional-hero .hero-background {
    background-image: url('../assets/images/banner-inicial.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
}

.institucional-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.6) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.institucional-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.institucional-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.institucional-hero .page-title.animate-fade-in {
    opacity: 1;
    transform: none;
}

.institucional-hero .page-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.institucional-hero .page-subtitle.animate-fade-in-delay {
    opacity: 1;
    transform: none;
}

.contato-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contato-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec6608, #f9b233);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contato-card:hover::before {
    transform: scaleX(1);
}

.contato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contato-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec6608, #f9b233);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contato-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contato-card:hover .contato-icon {
    transform: scale(1.1);
}

.contato-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1e2b;
    margin-bottom: 10px;
}

.contato-descricao {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contato-detalhes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contato-link {
    color: #ec6608;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contato-link:hover {
    color: #d55a07;
}

.whatsapp-link {
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
}

.contato-endereco {
    font-style: normal;
    color: #6c757d;
    line-height: 1.6;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.horario-item:last-child {
    border-bottom: none;
}

.dia {
    font-weight: 600;
    color: #0a1e2b;
}

.hora {
    color: #ec6608;
    font-weight: 600;
}

.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.rede-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rede-social-link.linkedin {
    background: #0077b5;
}

.rede-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.rede-social-link.facebook {
    background: #1877f2;
}

.rede-social-link.youtube {
    background: #ff0000;
}

.rede-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Formulário Moderno */

.formulario-section {
    padding: 80px 0;
    background: #fff;
}

.formulario-container {
    max-width: 800px;
    margin: 0 auto;
}

.formulario-content {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

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

.formulario-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1e2b;
    margin-bottom: 10px;
}

.formulario-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.formulario-moderno {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0a1e2b;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

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

.form-icon {
    position: absolute;
    left: 15px;
    top: 73%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.form-icon.textarea-icon {
    top: 15px;
    transform: none;
}

.form-group input:focus+.form-icon,
.form-group select:focus+.form-icon,
.form-group textarea:focus+.form-icon {
    color: #ec6608;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-enviar {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 102, 8, 0.3);
}

.direcoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direcao-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #ec6608;
}

.direcao-item i {
    font-size: 1.5rem;
    color: #ec6608;
    width: 30px;
    text-align: center;
}

.direcao-item div {
    flex: 1;
}

.direcao-item strong {
    color: #0a1e2b;
}


/* Responsivo para Contatos */

@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .formulario-content {
        padding: 30px 20px;
    }

    .formulario-header h2 {
        font-size: 2rem;
    }

    .contato-card {
        padding: 30px 20px;
    }
}

@media (max-width: 700px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        background: rgba(236, 102, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        width: 100vw;
        padding: 20px 24px;
        gap: 8px;
        z-index: 1001;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav ul.open {
        display: flex;
    }

    .main-nav ul li a {
        text-align: left;
        margin: 0;
        border-radius: 6px;
        font-size: 0.95rem;
        padding: 12px 16px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .main-nav ul li a:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateX(4px);
    }

    .main-nav ul li a.active {
        background: rgba(255, 255, 255, 0.18);
        transform: translateX(6px);
        font-weight: 600;
        border-left: 2px solid #fff;
        padding-left: 14px;
    }

    .menu-toggle {
        display: block;
    }

    .site-header .container {
        flex-direction: row;
        height: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .contato-hero {
        min-height: 450px;
        padding: 120px 0 60px 0;
    }

    .contato-hero .page-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .contato-hero .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .equipamentos-hero {
        min-height: 450px;
        padding: 120px 0 60px 0;
    }

    .equipamentos-hero .page-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .equipamentos-hero .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .institucional-hero {
        min-height: 450px;
        padding: 120px 0 60px 0;
    }

    .institucional-hero .page-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .institucional-hero .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .hero-section {
        min-height: 350px;
        padding: 80px 0 40px 0;
    }

    .hero-content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .equipamento-card {
        width: 95vw;
    }

    .filtros-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filtros-grid .filtro-grupo:last-child {
        margin-top: 15px;
    }

    .filtros-content {
        padding: 24px;
    }

    .equipamentos-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ordenacao {
        flex-direction: column;
        gap: 8px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferencial-card {
        padding: 30px 20px;
    }
}


/* Formulários */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    color: #0a1e2b;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
}

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

.form-mensagem {
    margin-top: 10px;
    font-size: 1rem;
}

.form-mensagem .sucesso {
    color: #2e7d32;
}

.form-mensagem .erro {
    color: #c62828;
}


/* Busca Global */

.busca-global {
    margin-left: 20px;
}

.btn-busca-global {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-busca-global:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-busca {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-busca.open {
    display: flex;
    opacity: 1;
}

.modal-busca-content {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-busca.open .modal-busca-content {
    transform: scale(1);
}

.modal-busca-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.modal-busca-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.close-busca {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-busca:hover {
    background: #e9ecef;
    color: #333;
}

.modal-busca-body {
    padding: 24px;
}

.busca-input-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.busca-input-wrapper input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.busca-input-wrapper input:focus {
    outline: none;
    border-color: #ec6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.btn-busca-executar {
    background: #ec6608;
    color: #fff;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-busca-executar:hover {
    background: #d55a07;
    transform: translateY(-2px);
}

.busca-sugestoes h4 {
    margin: 0 0 16px 0;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sugestoes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.sugestao-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sugestao-item:hover {
    background: #ec6608;
    color: #fff;
    border-color: #ec6608;
}

.resultados-busca {
    max-height: 300px;
    overflow-y: auto;
}

.lista-resultados {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resultado-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.resultado-item:hover {
    border-color: #ec6608;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resultado-icone {
    width: 40px;
    height: 40px;
    background: #ec6608;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.resultado-conteudo {
    flex: 1;
}

.resultado-conteudo h4 {
    margin: 0 0 4px 0;
    color: #333;
    font-size: 1rem;
}

.resultado-conteudo p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.resultado-tipo {
    background: #e9ecef;
    color: #666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.loading-busca {
    text-align: center;
    padding: 40px;
    color: #666;
}

.sem-resultados {
    text-align: center;
    padding: 40px;
    color: #666;
}

.erro-busca {
    text-align: center;
    padding: 40px;
    color: #dc3545;
}


/* Responsividade para busca global */

@media (max-width: 768px) {
    .busca-global {
        margin-left: 10px;
    }

    .modal-busca-content {
        width: 95%;
        margin: 20px;
    }

    .busca-input-wrapper {
        flex-direction: column;
    }

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


/* Página 404 */

.error-404-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: #ec6608;
    margin-bottom: 24px;
}

.error-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 16px;
}

.error-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.error-suggestions h3 {
    color: #333;
    margin-bottom: 16px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.error-suggestions a {
    color: #ec6608;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: #d55a07;
}


/* Lazy Loading */

.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}


/* Responsividade para novas páginas */

@media (max-width: 768px) {
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* WhatsApp Chat */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button.pulse {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.whatsapp-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.whatsapp-chat.open {
    display: flex;
    animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 20px 20px 0 0;
}

.chat-header .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 18px;
    font-weight: bold;
}

.chat-header .info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-header .info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.chat-header .close-chat {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-header .close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f0f0f0;
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.message.received {
    align-items: flex-start;
}

.message.sent {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.received .message-bubble {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message.sent .message-bubble {
    background: #dcf8c6;
    color: #333;
    border-bottom-right-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    margin-left: 10px;
}

.message.sent .message-time {
    margin-right: 10px;
}

.chat-actions {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}

.chat-action-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chat-action-btn.primary {
    background: #25d366;
    color: #fff;
}

.chat-action-btn.primary:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.chat-action-btn.secondary {
    background: #f0f0f0;
    color: #333;
}

.chat-action-btn.secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}


/* Responsividade para o chat */

@media (max-width: 768px) {
    .whatsapp-chat {
        width: 90vw;
        height: 70vh;
        right: 5vw;
        left: 5vw;
        bottom: 100px;
    }

    .chat-messages {
        padding: 15px;
    }

    .chat-actions {
        padding: 12px 15px;
        flex-direction: column;
    }

    .chat-action-btn {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-chat {
        width: 95vw;
        height: 75vh;
        right: 2.5vw;
        left: 2.5vw;
        bottom: 90px;
    }
}


/* Footer */

.site-footer {
    background: #0a1e2b;
    color: #fff;
    padding: 40px 0 16px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
}

.footer-links a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.footer-social-link {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-social-link:hover {
    color: #ec6608;
}

.footer-bottom {
    text-align: center;
    color: #bbb;
    font-size: 0.95rem;
}

.developer-credits {
    margin-top: 8px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.developer-credits a {
    color: #ec6608;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.developer-credits a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Responsivo */

@media (max-width: 900px) {
    .container {
        padding: 0 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
    }

    .frota-content,
    .sobre-content,
    .diferenciais-content,
    .mapa-container {
        flex-direction: column;
        gap: 24px;
    }

    .mapa-interativo {
        width: 100%;
        max-width: 100%;
        height: 400px;
        margin: 0 auto;
    }

    .mapa-localizacao-section {
        padding: 40px 0;
        min-height: 60vh;
    }

    .mapa-localizacao-section .container {
        padding: 0 15px;
    }
}


/* CTA Section Styles */

.cta-section {
    background: linear-gradient(135deg, #0a1e2b 0%, #ec6608 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: #ec6608;
    color: #fff;
    border: 2px solid #ec6608;
}

.cta-buttons .btn-primary:hover {
    background: #d55a07;
    border-color: #d55a07;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #0a1e2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

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

    .mapa-interativo {
        height: 350px;
    }

    .mapa-localizacao-section {
        padding: 30px 0;
        min-height: 50vh;
    }

    .mapa-localizacao-section .mapa-interativo {
        height: 350px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Stats Section Responsive */
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-section .stat-card {
        padding: 30px 20px;
    }

    .stats-section .stat-number {
        font-size: 36px;
    }

    .stats-section .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* Categorias Section Responsive */
    .categorias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categoria-card {
        padding: 30px 20px;
    }

    /* Serviços Section Responsive */
    .servicos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .servicos-text h2 {
        font-size: 28px;
    }

    .servicos-image .image-placeholder {
        height: 300px;
    }

    /* Depoimentos Section Responsive */
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .depoimento-card {
        padding: 30px 20px;
    }

    /* Parceiros Section Responsive */
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .parceiro-card {
        padding: 30px 20px;
    }

    /* Serviços: responsivo 2 colunas */
    .servicos-lista {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


/* Diferenciais Styles */

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

.diferencial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.diferencial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ec6608;
}

.diferencial-icon {
    font-size: 3rem;
    color: #ec6608;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ec6608 0%, #d55a07 100%);
    color: #fff;
}

.diferencial-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1e2b;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.diferencial-card:hover .diferencial-content h3 {
    color: #ec6608;
}

.diferencial-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.diferencial-beneficios {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.diferencial-beneficios span {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.diferencial-card:hover .diferencial-beneficios span {
    color: #ec6608;
}


/* Clientes Atendidos Section */

.clientes-section {
    padding: 0 0 60px 0;
    background: #fff;
}

.clientes-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 40px 0 0 0;
}

.clientes-carousel {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: clientesScroll 30s linear infinite;
    will-change: transform;
}

.cliente-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.cliente-logo img {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.cliente-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.07);
    z-index: 2;
}

@keyframes clientesScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-225%);
    }
}

@media (max-width: 900px) {
    .clientes-carousel {
        gap: 32px;
    }

    .cliente-logo {
        height: 60px;
    }

    .cliente-logo img {
        max-height: 50px;
    }
}

@media (max-width: 600px) {
    .clientes-carousel {
        gap: 20px;
    }

    .cliente-logo {
        height: 40px;
    }

    .cliente-logo img {
        max-height: 30px;
    }

    /* Serviços: responsivo 1 coluna */
    .servicos-lista {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* Vendas de Máquinas Styles */


/* Vendas Hero */

.vendas-hero {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.9) 0%, rgba(236, 102, 8, 0.8) 100%);
    color: #fff;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.vendas-hero .hero-background {
    background-image: url('../assets/images/equip-vendas.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vendas-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.6) 100%);
}

.vendas-hero .page-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.vendas-hero .page-title.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.vendas-hero .page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.2s;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vendas-hero .page-subtitle.animate-fade-in-delay {
    opacity: 1;
    transform: translateY(0);
}


/* Banner de Destaque */

.destaque-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    padding: 80px 0;
    position: relative;
}

.destaque-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fed7aa" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23fed7aa" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23fed7aa" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23fed7aa" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23fed7aa" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.destaque-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.destaque-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.destaque-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
}

.destaque-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destaque-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destaque-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.destaque-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec6608;
    margin-bottom: 8px;
}

.destaque-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

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


/* Vendas Section */

.vendas-section {
    background: #fff;
    padding: 30px 0 30px 0;
}

.vendas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 30px;
}

.maquina-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(236, 102, 8, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.maquina-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec6608, #d55a07);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.maquina-card:hover::before {
    transform: scaleX(1);
}

.maquina-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(236, 102, 8, 0.15);
}

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

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

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

.maquina-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(236, 102, 8, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.maquina-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-estado {
    background: linear-gradient(135deg, #ec6608, #d55a07);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(236, 102, 8, 0.3);
}

.maquina-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.maquina-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.maquina-card:hover .maquina-info h3 {
    color: #ec6608;
}

.maquina-descricao {
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.maquina-localizacao {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #475569;
    border-left: 3px solid #ec6608;
}

.maquina-localizacao i {
    color: #ec6608;
    font-size: 0.9rem;
}

.maquina-localizacao span {
    font-weight: 500;
}

.maquina-especificacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.especificacao {
    text-align: center;
}

.espec-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 4px;
}

.espec-valor {
    display: block;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.maquina-preco {
    text-align: center;
    margin-bottom: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #ec6608, #d55a07);
    border-radius: 8px;
}

.preco-valor {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.maquina-bottom-section {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.maquina-acoes {
    display: flex;
    gap: 10px;
}

.maquina-acoes .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9rem;
}


/* Modal Máquina */

.modal-maquina {
    max-width: 800px;
    width: 90%;
}

.modal-maquina-content {
    padding: 20px 0;
}

.modal-maquina-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-maquina-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-maquina-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-maquina-specs h3,
.modal-maquina-description h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1e2b;
    margin-bottom: 15px;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.spec-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.spec-value {
    font-weight: 600;
    color: #0a1e2b;
}

.modal-maquina-description p {
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

.modal-maquina-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.slider-main-container {
    width: 100%;
}

.slider-main-image {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-main-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev-btn {
    left: 15px;
}

.slider-nav-btn.next-btn {
    right: 15px;
}

.slider-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
    margin-bottom: 10px;
}

.slider-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.slider-thumbnails::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 3px;
}

.slider-thumbnails::-webkit-scrollbar-thumb {
    background: #ec6608;
    border-radius: 3px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: #ec6608;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #ec6608;
    box-shadow: 0 0 0 2px rgba(236, 102, 8, 0.3);
}

.slider-counter {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsividade para o slider */
@media (max-width: 768px) {
    .slider-main-image img {
        height: 250px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }
}

.modal-maquina-actions .btn {
    flex: 1;
    text-align: center;
}


/* Filtros de Vendas */

.filtros-acoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
}

#limpar-filtros,
#limpar-filtros-blog {
    padding: 8px 16px;
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#limpar-filtros:hover,
#limpar-filtros-blog:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

.loading-filtros {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 1.1rem;
}

.loading-filtros i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ec6608;
}

.erro-filtros {
    text-align: center;
    padding: 60px 20px;
    color: #dc3545;
    font-size: 1.1rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px 0;
}


/* Loading Container */

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    min-height: 300px;
    grid-column: 1 / -1;
}

.loading-spinner {
    margin-bottom: 20px;
}

.loading-spinner i {
    font-size: 48px;
    color: #ec6608;
    animation: spin 2s linear infinite;
}

.loading-container p {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Vendas Grid */

.vendas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}


/* Mensagem quando não há equipamentos */

.sem-equipamentos {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.sem-equipamentos-content {
    text-align: center;
    max-width: 600px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(236, 102, 8, 0.1);
}

.sem-equipamentos-icon {
    margin-bottom: 20px;
}

.sem-equipamentos-icon i {
    font-size: 4rem;
    color: #ec6608;
    opacity: 0.7;
}

.sem-equipamentos h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.sem-equipamentos p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sem-equipamentos-acoes {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.sem-equipamentos-acoes .btn {
    min-width: 160px;
}

.maquina-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.maquina-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.maquina-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.maquina-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.badge-estado {
    background: #ec6608;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.maquina-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.maquina-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a1e2b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.maquina-descricao {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
}

.maquina-especificacoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.especificacao {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.espec-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.espec-valor {
    font-weight: 600;
    color: #0a1e2b;
    font-size: 0.95rem;
}

.maquina-preco {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #ec6608 0%, #ff8c42 100%);
    border-radius: 12px;
    text-align: center;
}

.preco-valor {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.maquina-bottom-section {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.maquina-acoes {
    display: flex;
    gap: 12px;
}

.maquina-acoes .btn {
    flex: 1;
    text-align: center;
}


/* Vendas Filtros Header Unificado */

.vendas-filtros-header {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 40px;
    overflow: hidden;
}

.vendas-filtros-header .filtros-content {
    padding: 20px 24px;
}

.vendas-filtros-header .filtros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: end;
}

.vendas-filtros-header .filtro-grupo label {
    font-weight: 600;
    color: #0a1e2b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.vendas-filtros-header .filtro-select {
    width: 100%;
}

.filtro-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filtro-select:focus {
    outline: none;
    border-color: #ec6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.filtro-select option {
    padding: 8px;
    background: #fff;
    color: #333;
}


/* Vendas Header */

.vendas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0 30px;
    background: #fff;
}


/* Destaque Banner */

.destaque-banner {
    background: linear-gradient(135deg, #0a1e2b 0%, #1a3a4b 100%);
    color: #fff;
    padding: 80px 0;
    margin: 80px 0;
}

.destaque-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.destaque-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.destaque-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e9ecef;
}

.destaque-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ec6608;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(236, 102, 8, 0.1);
    border: 3px dashed #ec6608;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ec6608;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}


/* Responsive Styles for Vendas */

@media (max-width: 768px) {
    .vendas-hero .page-title {
        font-size: 2.5rem;
    }

    .vendas-hero .page-subtitle {
        font-size: 1.1rem;
    }

    .destaque-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .destaque-text h2 {
        font-size: 2rem;
    }

    .destaque-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vendas-grid {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
        gap: 20px;
    }

    .vendas-filtros-header .filtros-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .vendas-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .maquina-especificacoes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .maquina-acoes {
        flex-direction: column;
    }

    .maquina-bottom-section {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .vendas-hero .page-title {
        font-size: 2rem;
    }

    .destaque-text h2 {
        font-size: 1.8rem;
    }

    .maquina-info {
        padding: 15px;
    }

    .maquina-image {
        height: 180px;
    }

    .maquina-localizacao {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .maquina-localizacao i {
        font-size: 0.85rem;
    }

    .vendas-filtros-header .filtros-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vendas-filtros-header .filtros-content {
        padding: 15px 20px;
    }

    /* Estilos de select padronizados globalmente */
    .vendas-header {
        padding: 15px 20px;
    }

    .modal-maquina-image img {
        height: 200px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .modal-maquina-actions {
        flex-direction: column;
    }

    .destaque-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .image-placeholder i {
        font-size: 3rem;
    }

    .maquina-bottom-section {
        margin-top: 15px;
    }

    .maquina-especificacoes {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


/* Sustentabilidade Styles */


/* Sustentabilidade Hero */

.sustentabilidade-hero {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.9) 0%, rgba(34, 197, 94, 0.8) 100%);
    color: #fff;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.sustentabilidade-hero .hero-background {
    background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sustentabilidade-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(34, 197, 94, 0.6) 100%);
}

.sustentabilidade-hero .page-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.sustentabilidade-hero .page-title.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.sustentabilidade-hero .page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.2s;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sustentabilidade-hero .page-subtitle.animate-fade-in-delay {
    opacity: 1;
    transform: translateY(0);
}


/* Banner de Compromisso */

.compromisso-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.compromisso-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.compromisso-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
}

.compromisso-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.compromisso-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.compromisso-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.compromisso-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.compromisso-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

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


/* Pilares Section */

.pilares-section {
    background: #fff;
    padding: 100px 0;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pilar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pilar-card:hover::before {
    transform: scaleX(1);
}

.pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.15);
}

.pilar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.pilar-icon i {
    font-size: 2rem;
    color: #fff;
}

.pilar-card:hover .pilar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.pilar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.pilar-card:hover h3 {
    color: #22c55e;
}

.pilar-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pilar-beneficios {
    list-style: none;
    padding: 0;
}

.pilar-beneficios li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
}

.pilar-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.1rem;
}


/* Práticas Section */

.praticas-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 100px 0;
}

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

.pratica-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pratica-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pratica-card:hover::before {
    transform: scaleX(1);
}

.pratica-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.15);
}

.pratica-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.pratica-icon i {
    font-size: 2rem;
    color: #fff;
}

.pratica-card:hover .pratica-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.pratica-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.pratica-card:hover h3 {
    color: #22c55e;
}

.pratica-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}


/* Benefícios Section */

.beneficios-section {
    background: #fff;
    padding: 100px 0;
}

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

.beneficio-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.15);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.beneficio-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.beneficio-card p {
    color: #64748b;
    line-height: 1.6;
}


/* Certificações Section */

.certificacoes-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

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

.certificacao-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.certificacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(34, 197, 94, 0.15);
}

.certificacao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.certificacao-icon i {
    font-size: 2rem;
    color: #fff;
}

.certificacao-card:hover .certificacao-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.certificacao-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.certificacao-card p {
    color: #64748b;
    line-height: 1.6;
}


/* Responsive Styles for Sustentabilidade */

@media (max-width: 768px) {
    .sustentabilidade-hero .page-title {
        font-size: 2.5rem;
    }

    .sustentabilidade-hero .page-subtitle {
        font-size: 1.1rem;
    }

    .compromisso-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compromisso-text h2 {
        font-size: 2rem;
    }

    .compromisso-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .praticas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certificacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .sustentabilidade-hero .page-title {
        font-size: 2rem;
    }

    .compromisso-text h2 {
        font-size: 1.8rem;
    }

    .pilar-card {
        padding: 30px 20px;
    }

    .pratica-card {
        padding: 30px 20px;
    }

    .beneficio-card {
        padding: 25px 20px;
    }

    .certificacao-card {
        padding: 25px 20px;
    }
}


/* Blog Styles */

.blog-hero {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.9) 0%, rgba(236, 102, 8, 0.8) 100%);
    color: #fff;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.blog-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?q=80&w=1472&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 30, 43, 0.8) 0%, rgba(236, 102, 8, 0.6) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.blog-hero .page-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.blog-hero .page-title.animate-fade-in {
    opacity: 1;
    transform: none;
}

.blog-hero .page-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s 0.2s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-hero .page-subtitle.animate-fade-in-delay {
    opacity: 1;
    transform: none;
}

.filtro-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.filtro-input:focus {
    outline: none;
    border-color: #ec6608;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.filtro-input::placeholder {
    color: #6c757d;
}

.destaque-blog-section {
    padding: 20px 0;
    background: #ffffff;
}

.destaque-blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.artigo-destaque-principal {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artigo-destaque-principal:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.artigo-destaque-principal .artigo-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.artigo-destaque-principal .artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artigo-destaque-principal:hover .artigo-image img {
    transform: scale(1.05);
}

.artigo-categoria {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge-categoria {
    background: rgba(236, 102, 8, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-wrap-mode: nowrap;
}

.artigo-destaque-principal .artigo-content {
    padding: 30px;
}

.artigo-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #666;
}

.artigo-data {
    color: #ec6608;
    font-weight: 500;
}

.artigo-autor {
    color: #666;
}

.artigo-visualizacoes {
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.artigo-visualizacoes i {
    color: #ec6608;
    font-size: 0.8rem;
}

.artigo-destaque-principal h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    line-height: 1.3;
}

.artigo-destaque-principal p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.artigo-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    background: #f0f2f5;
    color: #555;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag:hover {
    background: #ec6608;
    color: #fff;
}

.artigos-secundarios {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.artigo-secundario {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artigo-secundario:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artigo-secundario .artigo-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.artigo-secundario .artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artigo-secundario:hover .artigo-image img {
    transform: scale(1.05);
}

.artigo-secundario .artigo-content {
    padding: 20px;
}

.artigo-secundario h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.4;
}

.artigo-secundario p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 16px;
}

.artigo-link {
    color: #ec6608;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artigo-link:hover {
    color: #d55a07;
    gap: 12px;
}

.artigos-section {
    padding: 80px 0;
}

.artigos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.artigo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.artigo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.artigo-card .artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.artigo-card .artigo-info {
    padding: 24px;
}

.artigo-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.4;
}

.artigo-descricao {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 16px;
}

.artigo-acoes {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.artigo-acoes .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 10px 16px;
}

.btn-compartilhar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.paginas {
    display: flex;
    gap: 8px;
}

.btn-pagina {
    background: #fff;
    border: 2px solid #e1e5e9;
    color: #666;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pagina:hover:not(:disabled) {
    border-color: #ec6608;
    color: #ec6608;
}

.btn-pagina.ativo {
    background: #ec6608;
    border-color: #ec6608;
    color: #fff;
}

.btn-pagina:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1e2b 0%, #ec6608 100%);
    color: #fff;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.newsletter-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-beneficios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.beneficio-item i {
    color: #ec6608;
    font-size: 1.1rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ec6608;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1);
}

.newsletter-form .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-hero .page-title {
        font-size: 2.5rem;
    }

    .blog-hero .page-subtitle {
        font-size: 1.3rem;
    }

    .destaque-blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artigo-destaque-principal .artigo-content {
        padding: 24px;
    }

    .artigo-destaque-principal h3 {
        font-size: 1.5rem;
    }

    .artigos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .artigos-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        padding: 30px;
    }

    .paginacao {
        flex-wrap: wrap;
        gap: 12px;
    }

    .paginas {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .btn-pagina-prev {
        order: 1;
    }

    .btn-pagina-next {
        order: 3;
    }
}

@media (max-width: 480px) {
    .blog-hero .page-title {
        font-size: 2rem;
    }

    .artigo-destaque-principal .artigo-content {
        padding: 20px;
    }

    .artigo-destaque-principal h3 {
        font-size: 1.3rem;
    }

    .artigo-card .artigo-info {
        padding: 20px;
    }

    .artigo-acoes {
        flex-direction: column;
    }

    .newsletter-form {
        padding: 24px;
    }

    .newsletter-text h2 {
        font-size: 1.5rem;
    }
}


/* Estilos para Página de Artigo Individual */

.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #dee2e6;
}

.breadcrumb a {
    color: #ec6608;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d45a07;
}

.breadcrumb li[aria-current="page"] {
    color: #495057;
    font-weight: 500;
}

.artigo-content-section {
    padding: 40px 0;
    background: #fff;
}

.artigo-content-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.artigo-header {
    margin-bottom: 30px;
    text-align: center;
}

.artigo-categorias {
    margin-bottom: 20px;
    text-align: center;
}

.artigo-categorias h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

.artigo-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
}

.artigo-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #ec6608;
    font-size: 1rem;
}

.artigo-resumo {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #ec6608;
    margin-bottom: 25px;
    text-align: center;
}

.artigo-resumo p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
}

.artigo-imagem-destaque {
    margin: 30px 0 40px 0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    padding: 10px;
}

.artigo-imagem-destaque img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.artigo-imagem-destaque:hover img {
    transform: scale(1.02);
}

.artigo-conteudo {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.artigo-conteudo p {
    margin-bottom: 1.2em;
}

.artigo-conteudo h2,
.artigo-conteudo h3,
.artigo-conteudo h4 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #333;
}

.artigo-conteudo h2 {
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom: 2px solid #ec6608;
    padding-bottom: 8px;
}

.artigo-conteudo h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.artigo-conteudo h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.artigo-conteudo ul,
.artigo-conteudo ol {
    margin: 1em 0;
    padding-left: 2em;
}

.artigo-conteudo li {
    margin-bottom: 0.5em;
}

.artigo-conteudo blockquote {
    background: #f8f9fa;
    border-left: 4px solid #ec6608;
    padding: 1em;
    margin: 1.5em 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.artigo-conteudo strong {
    font-weight: 600;
    color: #333;
}

.artigo-conteudo em {
    font-style: italic;
}

.artigo-conteudo a {
    color: #ec6608;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.artigo-conteudo a:hover {
    border-bottom-color: #ec6608;
}

.artigo-conteudo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em auto;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artigo-conteudo table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artigo-conteudo th,
.artigo-conteudo td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.artigo-conteudo th {
    background: #ec6608;
    color: #fff;
    font-weight: 600;
}

.artigo-conteudo tr:hover {
    background: #f8f9fa;
}

.artigo-conteudo h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ec6608;
}

.artigo-conteudo h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
}

.artigo-conteudo p {
    margin-bottom: 20px;
}

.artigo-conteudo ul {
    margin: 20px 0;
    padding-left: 20px;
}

.artigo-conteudo li {
    margin-bottom: 10px;
}

.artigo-conteudo strong {
    color: #ec6608;
    font-weight: 600;
}

.checklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ec6608;
}

.checklist-item label {
    font-weight: 500;
    color: #495057;
}

.tabela-manutencao {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tabela-manutencao th {
    background: #ec6608;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.tabela-manutencao td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.tabela-manutencao tr:last-child td {
    border-bottom: none;
}

.tabela-manutencao tr:hover {
    background: #f8f9fa;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.beneficio-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ec6608;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.beneficio-item h4 {
    color: #ec6608;
    font-weight: 600;
    margin-bottom: 10px;
}

.artigo-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.artigo-tags {
    margin-bottom: 25px;
}

.artigo-tags h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

.artigo-compartilhamento {
    margin-bottom: 25px;
}

.artigo-compartilhamento h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-facebook {
    background: #1877f2;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.btn-twitter {
    background: #1da1f2;
}

.btn-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.btn-linkedin {
    background: #0077b5;
}

.btn-linkedin:hover {
    background: #006097;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-email {
    background: #ea4335;
}

.btn-email:hover {
    background: #d33426;
    transform: translateY(-2px);
}


/* Sidebar */

.artigo-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.widget h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ec6608;
}

.artigos-relacionados .artigos-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.artigo-relacionado {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.artigo-relacionado:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.artigo-relacionado .artigo-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

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

.artigo-relacionado .artigo-info {
    flex: 1;
}

.artigo-relacionado h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.artigo-relacionado p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.btn-link {
    color: #ec6608;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #d45a07;
    text-decoration: underline;
}




/* Página 404 */

.error-404-section {
    padding: 100px 0;
    text-align: center;
}

.error-content h1 {
    font-size: 3rem;
    color: #ec6608;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}


/* Responsividade para Artigos */

@media (max-width: 1024px) {
    .artigo-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artigo-sidebar {
        position: static;
        order: -1;
    }

    .artigo-content-section .container {
        padding: 0 15px;
    }

    .breadcrumb-section .container {
        padding: 0 15px;
    }

    .artigo-titulo {
        font-size: 1.8rem;
    }

    .artigo-meta {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .artigo-titulo {
        font-size: 1.6rem;
    }

    .artigo-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .artigo-conteudo h2 {
        font-size: 1.4rem;
    }

    .artigo-conteudo h3 {
        font-size: 1.1rem;
    }

    .artigo-imagem-destaque {
        margin: 20px 0 30px 0;
        padding: 5px;
    }

    .artigo-imagem-destaque img {
        max-width: 100%;
    }

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

    .artigo-relacionado {
        flex-direction: column;
        gap: 10px;
    }

    .artigo-relacionado .artigo-image {
        width: 100%;
        height: 120px;
    }

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

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

    .artigo-categorias,
    .artigo-tags {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .artigo-titulo {
        font-size: 1.8rem;
    }

    .artigo-conteudo {
        font-size: 1rem;
    }

    .artigo-conteudo h2 {
        font-size: 1.3rem;
    }

    .artigo-conteudo h3 {
        font-size: 1.1rem;
    }

    .checklist {
        padding: 20px;
    }

    .tabela-manutencao {
        font-size: 0.9rem;
    }

    .tabela-manutencao th,
    .tabela-manutencao td {
        padding: 10px;
    }
}

.leaflet-top,
.leaflet-bottom {
    z-index: 999 !important;
}


/* Sustentabilidade Section na página Institucional */

.sustentabilidade-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.sustentabilidade-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.sustentabilidade-section .container {
    position: relative;
    z-index: 1;
}

.sustentabilidade-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sustentabilidade-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.sustentabilidade-section .section-description {
    font-size: 1.1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Responsive para Sustentabilidade Section */

@media (max-width: 768px) {
    .sustentabilidade-section {
        padding: 60px 0;
    }

    .sustentabilidade-section .section-title {
        font-size: 2rem;
    }

    .sustentabilidade-section .section-description {
        font-size: 1rem;
    }
}

/* Trabalhe Conosco Section */
.trabalhe-conosco-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.trabalhe-conosco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23ec6608" opacity="0.1"/><circle cx="90" cy="20" r="1.5" fill="%23ec6608" opacity="0.1"/><circle cx="20" cy="80" r="1" fill="%23ec6608" opacity="0.1"/><circle cx="80" cy="90" r="2.5" fill="%23ec6608" opacity="0.1"/></svg>');
    pointer-events: none;
}

.trabalhe-conosco-section .container {
    position: relative;
    z-index: 2;
}

.trabalhe-conosco-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.trabalhe-conosco-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trabalhe-conosco-section .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Porque Trabalhar Conosco */
.porque-trabalhar {
    margin-bottom: 60px;
}

.porque-content {
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.porque-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ec6608, #ff8c42);
}

.porque-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.porque-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.porque-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.porque-stats .stat-item {
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(236, 102, 8, 0.3);
}

.porque-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.porque-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Benefícios Grid */
.beneficios-trabalho-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.beneficio-trabalho-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beneficio-trabalho-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ec6608, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.beneficio-trabalho-card:hover::before {
    transform: scaleX(1);
}

.beneficio-trabalho-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-trabalho-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.beneficio-trabalho-card:hover .beneficio-trabalho-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(236, 102, 8, 0.3);
}

.beneficio-trabalho-icon i {
    font-size: 2rem;
    color: white;
}

.beneficio-trabalho-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.beneficio-trabalho-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.beneficio-detalhes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.beneficio-detalhes span {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Áreas de Atuação */
.areas-atuacao {
    margin-bottom: 60px;
}

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

.section-subheader h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subheader p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.area-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ec6608;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.area-icon i {
    font-size: 1.5rem;
    color: white;
}

.area-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.area-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-vagas {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-vagas span {
    font-size: 0.9rem;
    color: #ec6608;
    font-weight: 500;
    padding: 5px 10px;
    background: rgba(236, 102, 8, 0.1);
    border-radius: 5px;
}

/* Processo Seletivo */
.processo-seletivo {
    margin-bottom: 60px;
}

.processo-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.processo-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.processo-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(236, 102, 8, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CTA Trabalhe Conosco */
.cta-trabalhe-conosco {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.cta-trabalhe-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-trabalhe-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contato-trabalhe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    min-width: 280px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contato-item i {
    font-size: 1.5rem;
    color: #ec6608;
}

.contato-item strong {
    display: block;
    margin-bottom: 5px;
}

.contato-item a {
    color: #ec6608;
    text-decoration: none;
    font-weight: 500;
}

.contato-item a:hover {
    text-decoration: underline;
}

.cta-trabalhe-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-trabalhe-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-trabalhe-buttons .btn-primary {
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border: none;
    color: white;
}

.cta-trabalhe-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #d55607, #ec6608);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 102, 8, 0.3);
}

.cta-trabalhe-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-trabalhe-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 992px) {
    .trabalhe-conosco-section .section-title {
        font-size: 2rem;
    }

    .porque-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .processo-steps {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .contato-trabalhe {
        flex-direction: column;
        gap: 20px;
    }

    .contato-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .trabalhe-conosco-section {
        padding: 60px 0;
    }

    .trabalhe-conosco-section .section-title {
        font-size: 1.8rem;
    }

    .porque-content {
        padding: 30px 20px;
    }

    .beneficio-trabalho-card {
        padding: 25px 20px;
    }

    .area-card {
        padding: 25px 20px;
    }

    .processo-content {
        padding: 30px 20px;
    }

    .cta-trabalhe-conosco {
        padding: 30px 20px;
    }

    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cta-trabalhe-buttons {
        margin-top: 20px;
    }
}

.camp-pad-cont {
    width: 100%;
    min-height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #ec6608 !important;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1) !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border-color: #ec6608 !important;
    box-shadow: 0 0 0 3px rgba(236, 102, 8, 0.1) !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-color: #ec6608 !important;
}


/* Loading Spinner */

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.loading-spinner i {
    font-size: 2rem;
    color: #ec6608;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Melhorias na Modal de Máquina */

.modal-maquina .modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}

.modal-maquina-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-maquina-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-maquina-image:hover img {
    transform: scale(1.05);
}

.modal-maquina-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-maquina-specs h3,
.modal-maquina-description h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    border-bottom: 2px solid #ec6608;
    padding-bottom: 8px;
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #ec6608;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 102, 8, 0.1);
}

.spec-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-label i {
    font-size: 0.8rem;
    color: #ec6608;
    width: 16px;
    text-align: center;
}

.spec-value {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.2;
}

.spec-item-preco {
    background: linear-gradient(135deg, #ec6608, #ff8c42);
    border-left: 4px solid #0a1e2b;
}

.spec-item-preco .spec-label {
    color: rgba(255, 255, 255, 0.9);
}

.spec-item-preco .spec-value {
    color: #ffffff;
    font-size: 1.2rem;
}

.modal-maquina-description p {
    line-height: 1.6;
    color: #475569;
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #ec6608;
}

.modal-maquina-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.modal-maquina-actions .btn {
    flex: 1;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}


/* Responsividade para Filtros */

@media (max-width: 768px) {
    .filtros-acoes {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .filtros-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filtro-grupo {
        margin-bottom: 0;
    }
}


/* Responsividade para Modal de Máquina */

@media (max-width: 768px) {
    .modal {
        align-items: flex-start;
        padding: 10px;
    }

    .modal-content {
        width: 100%;
        max-width: none;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        margin: 0;
        border-radius: 12px;
        padding: 20px;
    }

    .modal-maquina .modal-content {
        width: 100%;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        margin: 0;
        padding: 20px;
    }

    .modal-maquina-image img {
        height: 200px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .spec-item {
        padding: 12px;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 1rem;
    }

    .modal-maquina-actions {
        flex-direction: column;
        gap: 10px;
    }

    .modal-maquina-actions .btn {
        width: 100%;
    }

    .modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}


/* Prevenir scroll do body quando modal estiver aberto */

body.modal-open {
    overflow: hidden;
}


/* Ajustes para dispositivos muito pequenos */

@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }

    .modal-content {
        padding: 15px;
        border-radius: 8px;
    }

    .modal-maquina .modal-content {
        padding: 15px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-maquina-image img {
        height: 180px;
    }

    .spec-item {
        padding: 10px;
    }

    .spec-label {
        font-size: 0.75rem;
    }

    .spec-value {
        font-size: 0.9rem;
    }
}


/* Estilo para erro na modal */

.modal-maquina-content .erro {
    color: #dc3545;
    text-align: center;
    padding: 40px 20px;
    font-weight: 600;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-hero+.filtros-section .filtros-acoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
}

.blog-hero+.filtros-section .filtros-content {
    padding: 24px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

.loading::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #ec6608;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.erro {
    text-align: center;
    padding: 60px 20px;
    color: #dc3545;
    font-size: 1.1rem;
}

.erro::before {
    content: '⚠️';
    display: block;
    font-size: 2rem;
    margin-bottom: 16px;
}

.sem-artigos {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

.sem-artigos::before {
    content: '📝';
    display: block;
    font-size: 2rem;
    margin-bottom: 16px;
}


/* WhatsApp Fixed Button */

.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    color: #fff;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}


/* WhatsApp Modal */

.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    z-index: 100000;
    display: none;
    animation: chat-slide-in 0.3s ease;
}

.whatsapp-modal::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.whatsapp-modal.active {
    display: block;
}

@keyframes chat-slide-in {
    from {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.whatsapp-modal-content {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-avatar img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-info .status {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f0f0f0;
    min-height: 0;
}

.whatsapp-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: #25d366 #f0f0f0;
}

.whatsapp-messages::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-messages::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.whatsapp-messages::-webkit-scrollbar-thumb {
    background: #25d366;
    border-radius: 3px;
}

.whatsapp-messages::-webkit-scrollbar-thumb:hover {
    background: #128c7e;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.message.received {
    align-self: flex-start;
}

.message.sent {
    align-self: flex-end;
}

.message-content {
    background: #fff;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.message.received .message-content {
    background: #fff;
    border-bottom-left-radius: 5px;
}

.message.sent .message-content {
    background: #dcf8c6;
    border-bottom-right-radius: 5px;
}

.message-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

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

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    align-self: flex-end;
}

.whatsapp-input {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}

#whatsapp-message-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

#whatsapp-message-input:focus {
    outline: none;
    border-color: #25d366;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.whatsapp-send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


/* Garantir que o botão apareça em todas as páginas */

.whatsapp-fixed {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Responsivo para WhatsApp */

@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    .whatsapp-modal {
        bottom: 80px;
        right: 20px;
        width: 320px;
        height: 400px;
    }

    .whatsapp-modal::after {
        right: 15px;
    }

    .whatsapp-modal-header {
        padding: 15px;
        flex-shrink: 0;
    }

    .whatsapp-messages {
        padding: 15px;
        min-height: 0;
    }

    .whatsapp-input {
        padding: 15px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-fixed {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 22px;
    }

    .whatsapp-modal {
        bottom: 70px;
        right: 15px;
        width: 300px;
        height: 380px;
    }

    .whatsapp-modal::after {
        right: 10px;
    }

    .whatsapp-modal-header {
        padding: 15px;
        flex-shrink: 0;
    }

    .whatsapp-avatar {
        width: 40px;
        height: 40px;
    }

    .whatsapp-avatar img {
        width: 30px;
        height: 30px;
        object-fit: cover;
        border-radius: 50%;
    }
}

/* Modal Slider de Imagens */
.modal-slider .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}

.slider-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.slider-header {
    background: linear-gradient(135deg, #ec6608, #ff8533);
    color: white;
    padding: 20px;
    text-align: center;
}

.slider-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.slider-main {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    min-height: 400px;
    max-height: 70vh;
}

.slider-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.slider-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slider-image:hover {
    transform: scale(1.02);
}

.slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
}

.slider-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(236, 102, 8, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: #ec6608;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #fff;
    overflow-x: auto;
    max-width: 100%;
}

.slider-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-thumbnail:hover {
    border-color: #ec6608;
    transform: scale(1.05);
}

.slider-thumbnail.active {
    border-color: #ec6608;
    box-shadow: 0 0 10px rgba(236, 102, 8, 0.3);
}

.slider-counter {
    text-align: center;
    color: #666;
    font-weight: 500;
}

/* Botão Ver Imagens */
.ver-imagens-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ver-imagens-btn:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.ver-imagens-btn i {
    font-size: 1rem;
}

/* Responsividade do Slider */
@media (max-width: 768px) {
    .modal-slider .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 2.5vh auto;
    }

    .slider-main {
        min-height: 300px;
        max-height: 50vh;
    }

    .slider-image {
        max-height: 40vh;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-thumbnail {
        width: 50px;
        height: 50px;
    }

    .slider-header {
        padding: 15px;
    }

    .slider-header h3 {
        font-size: 1.2rem;
    }
}

/* Estilos para modo de imagem única */
.slider-main.imagem-unica {
    padding: 30px 20px;
}

.slider-main.imagem-unica .slider-image-container {
    padding: 30px;
}

.slider-main.imagem-unica .slider-image {
    max-height: 70vh;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

/* Ocultar elementos desnecessários no modo imagem única */
.modo-imagem-unica .slider-thumbnails {
    display: none !important;
}

.modo-imagem-unica .slider-nav {
    display: none !important;
}

/* Ajustar counter para imagem única */
.modo-imagem-unica .slider-counter {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-weight: 600;
}

.modo-imagem-unica .slider-counter::before {
    content: "📷 ";
    margin-right: 5px;
}

/* ===================================================
   MINIATURA DO AUTOR - Blog e Artigos
   =================================================== */

.autor-miniatura {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ec6608;
    margin-right: 6px;
    vertical-align: middle;
    background-color: #f0f0f0;
}

.artigo-autor {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
}

.artigo-autor .autor-miniatura {
    flex-shrink: 0;
}

/* Meta item do autor na página de artigo */
.meta-autor {
    display: flex;
    align-items: center;
}

.meta-autor .autor-miniatura {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

/* Responsividade para autor miniatura */
@media (max-width: 768px) {
    .autor-miniatura {
        width: 24px;
        height: 24px;
    }
    
    .meta-autor .autor-miniatura {
        width: 28px;
        height: 28px;
    }
    
    .artigo-autor {
        font-size: 0.85rem;
    }
}