/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003679;
    --accent-yellow: #ffb400;
    --dark-blue: #021c3c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-radius: 25px;
    --border-radius-small: 15px;
    --border-radius-large: 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 54, 121, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 54, 121, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px;
    background: var(--white);
    transition: var(--transition);
}

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

/* Header Completamente Fixo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 80px;
    border-bottom: 1px solid rgba(0, 54, 121, 0.1);
    transition: var(--transition);
}

.navbar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-logo img {
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius-small);
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
}

.new-badge {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Slider - Ajustado para header fixo */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
}

.slide.active {
    opacity: 1;
    pointer-events: all;

}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: #e6a200;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

/* Distribuidores */
.distribuidores {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.brand-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.brand-logo img {
    width: 100%;
    background-size: cover;
}

/* Unidades */
.unidades {
    padding: 5rem 0;
}

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

.unidade-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.unidade-card.new {
    border: 2px solid var(--accent-yellow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
}

.unidade-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.location {
    color: var(--text-light);
    font-style: italic;
}

.new-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Quem Somos - Layout Esquerda/Direita */
.quem-somos {
    padding: 5rem 0;
    background: var(--light-gray);
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

.quem-somos-content {
    /* Conteúdo principal à esquerda */
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-vision-section {
    display: grid;
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Diferenciais - Direita */
.diferenciais-section {
    /* Cards menores à direita */
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.diferencial-card-compact {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.diferencial-card-compact:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.diferencial-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.diferencial-content-small h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.diferencial-content-small p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
}

/* Serviços */
.servicos {
    padding: 5rem 0;
}

.servico-main h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.servico-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.servico-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

/* Treinamentos */
.treinamentos {
    padding: 5rem 0;
    background: var(--light-gray);
}

.treinamento-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.treinamento-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.treinamento-header h3 {
    font-size: 2rem;
}

.treinamento-content {
    padding: 3rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-col {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.feature-col:hover {
    background: var(--accent-yellow);
    transform: scale(1.02);
}

.feature-col i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Galeria - MELHORADA E RESPONSIVA */
.galeria {
    padding: 5rem 0;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 54, 121, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

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

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: zoomPulse 2s infinite;
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Modal da Galeria - MELHORADO COM ESTILO IGUAL AOS OUTROS */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0, 54, 121, 0.9);
    border: 2px solid rgba(255, 180, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
    font-weight: bold;
}

.close-modal:hover {
    background: rgba(255, 180, 0, 0.9);
    border-color: rgba(0, 54, 121, 0.8);
    color: var(--dark-blue);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 20px rgba(255, 180, 0, 0.4);
}

/* Clientes */
.clientes {
    padding: 5rem 0;
    background: var(--light-gray);
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cliente-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary-blue);
    /* Adicionado para centralizar a imagem verticalmente */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cliente-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cliente-logo img{
    max-width: 100%; /* Mudado de width para max-width para melhor responsividade */
    height: auto; /* Adicionado para manter a proporção da imagem */
    display: block; /* Garante que a margem auto funcione */
}

/* Contato */
.contato {
    padding: 5rem 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.contato-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contato-item p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contato-item i {
    color: var(--accent-yellow);
}

.new-badgetwo {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    font-size: 1rem;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    font-weight: 600;
}

.form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-small);
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 54, 121, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: auto;
}

.footer-text p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-logo img {
    height: 30px;
    opacity: 0.7;
}

/* Page Hero para páginas internas - CORRIGIDO */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-top: 0; /* REMOVIDO O MARGIN-TOP */
}

.linha-leve-hero {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ff8c00 100%);
    color: var(--dark-blue);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.new-tag {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.linha-leve-hero .new-tag {
    background: var(--dark-blue);
    color: var(--accent-yellow);
}

.categorias-section {
    padding: 5rem 0;
}

/* FILTROS E BUSCA MELHORADOS */
.filters-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 2px solid var(--light-gray);
}

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

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 3px solid var(--primary-blue);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 54, 121, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.2), 0 10px 25px rgba(0, 54, 121, 0.15);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 1.2rem;
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-clear:hover {
    background: #e6a200;
    transform: translateY(-50%) scale(1.1);
}

.search-clear.visible {
    display: flex;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.filter-btn {
    padding: 1rem 2rem;
    border: 3px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 54, 121, 0.1);
}

.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 54, 121, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 54, 121, 0.4);
}

.results-info {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-small);
    color: var(--text-light);
    font-style: italic;
}

.results-info.highlight {
    background: linear-gradient(135deg, var(--accent-yellow), #ffc107);
    color: var(--dark-blue);
    font-weight: 600;
    animation: pulse 2s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.no-results i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.equipamento-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 54, 121, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.equipamento-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.equipamento-card.highlight {
    border: 3px solid var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(255, 180, 0, 0.3);
    transform: translateY(-5px);
}

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

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

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

/* Overlay para indicar que a imagem é clicável */
.equipamento-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 54, 121, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipamento-image:hover::after {
    opacity: 1;
}

.equipamento-image::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.equipamento-image:hover::before {
    opacity: 1;
}

/* Aviso de Imagem Ilustrativa */
.image-disclaimer {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 180, 0, 0.3);
    z-index: 3;
}

.equipamento-info {
    padding: 2rem;
}

.equipamento-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.equipamento-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1rem;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--primary-blue);
    color: white;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.accordion-content li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-content li:last-child {
    border-bottom: none;
}

.accordion-content img{
    width: 100%;
}

.accordion-content p {
    padding: 2px 10px;
}

.new-badgethree {
    background: var(--accent-yellow);
    color: var(--dark-blue);
    font-size: 1.2rem;
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    font-weight: 600;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

/* Modal para Imagens dos Equipamentos - MELHORADO PARA RESPONSIVIDADE */
.equipamento-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.equipamento-modal.active {
    opacity: 1;
    visibility: visible;
}

.equipamento-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoom 0.3s ease-out;
}

.equipamento-modal-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.equipamento-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0, 54, 121, 0.9);
    border: 2px solid rgba(255, 180, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
    font-weight: bold;
}

.equipamento-modal-close:hover {
    background: rgba(255, 180, 0, 0.9);
    border-color: rgba(0, 54, 121, 0.8);
    color: var(--dark-blue);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 20px rgba(255, 180, 0, 0.4);
}

/* Páginas Legais */
.legal-content {
    padding: 5rem 0;
    background: var(--light-gray);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-intro {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 3rem;
    text-align: center;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.legal-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-info {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--accent-yellow);
    width: 20px;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-blue);
    text-align: center;
}

.legal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Cookies específicos */
.cookie-type {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-small);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.cookie-type h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.third-party-cookies {
    display: grid;
    gap: 1rem;
}

.third-party-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
}

.third-party-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.third-party-item a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 500;
}

.third-party-item a:hover {
    text-decoration: underline;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

/* Sistema de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-blue);
    box-shadow: 0 -10px 30px rgba(0, 54, 121, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-text h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--primary-blue);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.cookie-settings {
    background: var(--accent-yellow);
    color: var(--dark-blue);
}

.cookie-settings:hover {
    background: #e6a200;
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid #e0e0e0;
}

.cookie-reject:hover {
    background: #f5f5f5;
    border-color: var(--text-light);
}

/* Modal de Configurações de Cookies */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.cookie-settings-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.cookie-settings-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cookie-settings-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.cookie-category:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 54, 121, 0.1);
}

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

.cookie-category h4 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.2rem;
}

.cookie-category p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Switch de Cookies */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-blue);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: var(--accent-yellow);
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: var(--light-gray);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

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

.cookie-save:hover {
    background: var(--dark-blue);
}

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

.cookie-accept-all:hover {
    background: #e6a200;
}

/* Toast de Cookies */
.cookie-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-hover);
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.cookie-toast.active {
    transform: translateX(0);
}

.cookie-toast-success {
    border-left-color: #28a745;
}

.cookie-toast-info {
    border-left-color: var(--primary-blue);
}

.cookie-toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.cookie-toast-content i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.cookie-toast-success .cookie-toast-content i {
    color: #28a745;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    cursor: pointer;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-blue);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

/* Modal do WhatsApp - MELHORADO COM SCROLLBAR PERSONALIZADA */
.whatsapp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.whatsapp-modal.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.whatsapp-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #25D366;
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
    flex-shrink: 0;
}

.whatsapp-header-icon {
    font-size: 2rem;
}

.whatsapp-header-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.whatsapp-header-text p {
    margin: 0;
    opacity: 0.9;
}

.whatsapp-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-modal-body {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
    /* SCROLLBAR PERSONALIZADA */
    scrollbar-width: thin;
    scrollbar-color: #25D366 #f0f0f0;
}

/* Webkit Scrollbar (Chrome, Safari, Edge) */
.whatsapp-modal-body::-webkit-scrollbar {
    width: 8px;
}

.whatsapp-modal-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.whatsapp-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.whatsapp-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Para Firefox */
.whatsapp-modal-body {
    scrollbar-width: thin;
    scrollbar-color: #25D366 #f0f0f0;
}

.whatsapp-unit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-small);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-unit:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-unit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.whatsapp-unit-info {
    flex: 1;
}

.whatsapp-unit-info h4 {
    color: var(--primary-blue);
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.whatsapp-unit-info p {
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.whatsapp-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.whatsapp-location i {
    color: var(--accent-yellow);
}

.whatsapp-new-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-yellow);
    color: var(--dark-blue);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.whatsapp-unit-action {
    color: #25D366;
    font-size: 1.2rem;
}

.whatsapp-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    background: var(--light-gray);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    flex-shrink: 0;
}

.whatsapp-modal-footer p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-modal-footer i {
    color: var(--accent-yellow);
}

/* Responsive - MENU MOBILE CORRIGIDO E SLIDER BUTTONS AJUSTADOS */
@media (max-width: 768px) {
    /* HEADER MOBILE CORRIGIDO */
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0.5rem;
        min-height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* SLIDER BUTTONS MOBILE - REDUZIDOS */
    .slider-nav {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slider-dots {
        bottom: 1.5rem;
        gap: 0.8rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.2rem;
    }

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

    .quem-somos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-vision-section {
        grid-template-columns: 1fr;
    }

    .diferencial-card-compact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* FILTROS MOBILE MELHORADOS */
    .filters-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        font-size: 1rem;
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    }

    .search-icon {
        left: 0.9rem;
        font-size: 1.1rem;
    }

    .search-clear {
        right: 0.9rem;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .category-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

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

    /* Galeria responsiva */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    /* Modal responsivo para tablet */
    .equipamento-modal,
    .gallery-modal {
        padding: 15px;
    }

    .equipamento-modal-content,
    .modal-content {
        max-width: 90vw;
        max-height: 90vh;
    }

    .equipamento-modal-close,
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 25px;
        width: 45px;
        height: 45px;
    }

    /* Cookies responsivo */
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

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

    .cookie-settings-content {
        margin: 10px;
    }

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

    /* WhatsApp responsivo - MELHORADO */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-modal-content {
        margin: 10px;
        max-height: 85vh;
    }

    .whatsapp-modal-header {
        padding: 1.5rem;
    }

    .whatsapp-unit {
        padding: 1rem;
    }

    /* Páginas legais responsivo */
    .legal-document {
        padding: 2rem;
        margin: 0 10px;
    }

    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

    /* SLIDER BUTTONS MOBILE PEQUENO - AINDA MENORES */
    .slider-nav {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 1rem;
        gap: 0.6rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    /* FILTROS MOBILE PEQUENO */
    .filters-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .search-input {
        font-size: 0.95rem;
        padding: 0.8rem 0.8rem 0.8rem 2.6rem;
    }

    .search-icon {
        left: 0.8rem;
        font-size: 1rem;
    }

    .search-clear {
        right: 0.8rem;
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .filter-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }

    /* Galeria mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    /* Modal responsivo para mobile */
    .equipamento-modal,
    .gallery-modal {
        padding: 10px;
    }

    .equipamento-modal-content,
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .equipamento-modal-close,
    .close-modal {
        font-size: 20px;
        width: 40px;
        height: 40px;
        top: 5px;
        right: 5px;
    }

    /* Cookies mobile */
    .cookie-banner {
        padding: 0 10px;
    }

    .cookie-content {
        padding: 1rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-toast {
        right: 10px;
        left: 10px;
        transform: translateY(100px);
    }

    .cookie-toast.active {
        transform: translateY(0);
    }

    /* WhatsApp mobile - MELHORADO */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .whatsapp-modal-content {
        max-height: 80vh;
        margin: 5px;
    }

    .whatsapp-modal-header {
        padding: 1rem;
    }

    .whatsapp-header-text h3 {
        font-size: 1.2rem;
    }

    .whatsapp-header-text p {
        font-size: 0.9rem;
    }

    .whatsapp-unit {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .whatsapp-unit-info {
        text-align: center;
    }

    .whatsapp-modal-footer {
        padding: 1rem;
    }

    /* Páginas legais mobile */
    .legal-document {
        padding: 1.5rem;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Breakpoints específicos para imagens muito grandes */
@media (min-width: 1920px) {
    .equipamento-modal-content,
    .modal-content {
        max-width: 85vw;
        max-height: 85vh;
    }
}

@media (min-width: 2560px) {
    .equipamento-modal-content,
    .modal-content {
        max-width: 75vw;
        max-height: 75vh;
    }
}

/* Orientação landscape em dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .equipamento-modal-content,
    .modal-content {
        max-height: 90vh;
        max-width: 90vw;
    }

    .equipamento-modal-close,
    .close-modal {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    /* WhatsApp landscape mobile */
    .whatsapp-modal-content {
        max-height: 85vh;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Filtros landscape */
    .filters-container {
        padding: 1rem;
    }

    .search-input {
        padding: 0.7rem 0.7rem 0.7rem 2.4rem;
    }

    .filter-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos de hover personalizados */
.hover-lift {
    transition: var(--transition);
}

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

/* Gradientes personalizados */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}