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

:root {
    --primary-color: #0f2557;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Cabeçalho e Navegação */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-mv{
    height: 20px;
    width: auto;
    object-fit: contain;
}

.mencao{
    position: fixed;
    top: 8px;
    right: 25px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 1001;
    color: var(--text-light);
}

.mencao-text{
    font-size: inherit;
    color: inherit;
}

.mencao-text p {
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0 auto;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Seção Hero */
.hero {
    background-image: url('imagens/empresa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 95px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 37, 87, 0.65) 0%, rgba(30, 64, 175, 0.55) 100%);
    z-index: 1;
}

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

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Seções Gerais */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Seção Sobre */
.sobre {
    background: var(--bg-light);
}

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

.sobre-content:last-child {
    grid-template-columns: 1fr;
}

.sobre-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.sobre-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.sobre-image-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.sobre-image-badge p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Seção Produtos */
.produto-destaque {
    max-width: 1000px;
    margin: 0 auto;
}

.produto-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.produto-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.produto-hero h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.produto-hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

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

.detalhe-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--secondary-color);
}

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

.detalhe-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.produto-specs {
    list-style: none;
    padding: 0;
}

.produto-specs li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.produto-specs li:before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.produto-specs li:last-child {
    border-bottom: none;
}

/* Catálogo de Produtos */
.catalogo-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.catalogo-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.catalogo-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Banners de Linhas de Produtos */
.linhas-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.linha-banner {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all 0.4s ease;
}

.linha-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.linha-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.linha-banner:hover img {
    transform: scale(1.08);
}

.linha-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 37, 87, 0.95) 0%, rgba(15, 37, 87, 0.7) 20%, transparent 100%);
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.linha-banner:hover .linha-banner-overlay {
    background: linear-gradient(to top, rgba(30, 64, 175, 0.95) 0%, rgba(30, 64, 175, 0.8) 60%, transparent 100%);
}

.linha-banner-overlay h4 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ver-catalogo {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.linha-banner:hover .ver-catalogo {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .linhas-banners {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .linha-banner-overlay h4 {
        font-size: 1.5rem;
    }

    .ver-catalogo {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.9rem;
    }

}

@media (max-width: 480px) {
    .linha-banner-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .linha-banner-overlay h4 {
        font-size: 1.3rem;
    }

    .mencao {
        right: 10px;
        top: 5px;
        font-size: 0.65rem;
        gap: 0.25rem;
    }

    .logo-mv {
        height: 12px;
    }
}

.catalogo-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.catalogo-cta p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.catalogo-cta .btn {
    display: inline-block;
}

/* Seção Acessórios */
.acessorios {
    padding: 80px 20px;
    background: var(--white);
}

.acessorios-content {
    max-width: 1000px;
    margin: 0 auto;
}

.acessorios-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.acessorios-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.acessorios-destaque {
    margin-bottom: 3rem;
}

.acessorios-destaque h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.acessorios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.acessorio-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

.acessorio-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-color);
}

.acessorio-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.acessorio-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.acessorios-especial {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.acessorios-especial h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.acessorios-especial p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.acessorios-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.acessorios-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.acessorios-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.acessorios-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.acessorios-cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Seção Consulta Técnica */
.consulta {
    padding: 80px 20px;
    background: var(--white);
}

.consulta-container {
    max-width: 900px;
    margin: 0 auto;
}

.consulta-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

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

.form-group-consulta:last-child {
    margin-bottom: 0;
}

.form-group-consulta label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group-consulta > input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.form-group-consulta > input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-button-group {
    display: flex;
    gap: 1rem;
}

.input-button-group input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}

.input-button-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-button-group .btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Mensagens */
.consulta-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.consulta-error {
    background: #fef2f2;
    border: 2px solid #fecaca;
    color: #991b1b;
}

.message-icon {
    font-size: 1.5rem;
}

.consulta-message p {
    margin: 0;
    font-weight: 500;
}

/* Loading */
.consulta-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.consulta-loading p {
    color: var(--text-light);
    font-weight: 500;
}

/* Resultado */
.consulta-resultado {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--secondary-color);
}

.resultado-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resultado-header-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.resultado-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.resultado-cliente {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-fechar {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-fechar:hover {
    background: rgba(255, 255, 255, 0.3);
}

.resultado-content {
    padding: 1.25rem;
}

.resultado-info-principal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-light);
}

.info-badge {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.badge-label {
    display: block;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.badge-value {
    display: block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.resultado-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.resultado-motor,
.resultado-componentes {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
}

.resultado-motor h4,
.resultado-componentes h4,
.resultado-observacoes h4,
.resultado-historico h4 {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    text-transform: uppercase;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-row .spec-label {
    color: var(--text-light);
    font-weight: 500;
}

.spec-row .spec-value {
    color: var(--text-dark);
    font-weight: 600;
}

.resultado-historico {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.resultado-historico h4 {
    color: var(--secondary-color);
}

.historico-lista {
    font-size: 0.85rem;
    color: var(--text-dark);
    max-height: 150px;
    overflow-y: auto;
}

.historico-lista p {
    margin: 0.5rem 0;
    padding-left: 1rem;
    border-left: 2px solid var(--bg-light);
}

.resultado-observacoes {
    background: #fffbeb;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 0;
}

.resultado-observacoes h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.resultado-observacoes p {
    color: #78350f;
    line-height: 1.8;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Seção Serviços */
.servicos {
    background: var(--bg-light);
}

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

.servico-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.servico-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.servico-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.servico-card ul {
    list-style: none;
    padding: 0;
}

.servico-card ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.servico-card ul li:before {
    content: '▸';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Seção Contato */
.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    min-width: 40px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
}

.contato-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contato-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contato-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.contato-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Rodapé */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        margin: 0;
    }

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

    .mencao {
        right: 15px;
        top: 6px;
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .logo-mv {
        height: 14px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 500px;
    }

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

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

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

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image-badge {
        top: 10px;
        right: 10px;
        padding: 1rem;
    }

    .sobre-image-badge span {
        font-size: 1.5rem;
    }

    .sobre-image-badge p {
        font-size: 0.8rem;
    }

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

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

    .acessorios-cta {
        padding: 2rem;
    }

    .acessorios-cta h3 {
        font-size: 1.5rem;
    }

    .acessorios-especial {
        padding: 1.5rem;
    }

    .input-button-group {
        flex-direction: column;
    }

    .input-button-group .btn {
        width: 100%;
    }

    .resultado-info-principal {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .resultado-specs-grid {
        grid-template-columns: 1fr;
    }

    .consulta-form-wrapper {
        padding: 1.5rem;
    }

    .resultado-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 20px 80px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

    .resultado-info-principal {
        grid-template-columns: 1fr;
    }

    .resultado-header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

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

    .catalogo-title {
        font-size: 1.5rem;
    }

    .catalogo-subtitle {
        font-size: 0.95rem;
    }

    .produto-hero h3 {
        font-size: 2rem;
    }

    .produto-hero-desc {
        font-size: 1rem;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.whatsapp-float svg,
.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

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

/* Animação de pulse no botão */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}
