/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
    overflow-y: scroll; /* sempre mostra a barra */
}

body {
    min-height: 100vh; /* <-- ESSENCIAL para empurrar o footer */
    display: flex;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
    max-width: 100%;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-anchor: none; /* <- ESSA LINHA AJUSTA O PROBLEMA DA SCROLLBAR NO CHROME */
}

.header-top {
    background: #1a365d;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
}

.navbar {
    padding: 15px 0;
}

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

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

.a {
    outline: none !important;
}


/* Logotipo com imagem */
.logo-img {
    max-height: 50px; /* ajuste conforme o tamanho visual ideal */
    height: auto;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link:focus {
    outline: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-orcamento {
    display: inline-block;
    background: #ff6b35;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-orcamento:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-orcamento::after {
    display: none;
}

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

.hamburguer span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s ease;
}

.submenu-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.submenu-toggle {
    font-size: 20px;
    cursor: pointer;
    color: #2d3748;
    transition: transform 0.3s ease;
    display: none;
}

/* Submenu escondido por padrão */
.has-submenu .submenu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding-left: 15px;
    gap: 10px;
}

/* Submenu visível quando .open */
.has-submenu.open .submenu {
    display: flex;
}

/* Gira a setinha quando aberto */
.has-submenu.open .submenu-toggle {
    transform: rotate(180deg);
}


/* Esconde o submenu por padrão */
.nav-menu .submenu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 3px;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 160px;
    z-index: 2000;
}

/* Os itens do submenu ficam em coluna */
.nav-menu .submenu li {
    list-style: none;
}

/* Links do submenu */
.nav-menu .submenu li a {
    display: block;
    padding: 8px 20px;
    color: #2d3748;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.nav-menu .submenu li a:hover {
    background-color: #ff6b35;
    color: #fff;
}

/* Mostra o submenu ao passar o mouse no pai */
.nav-menu li.has-submenu:hover > .submenu {
    display: block;
}

/* Para o posicionamento correto do submenu, o pai deve ser relativo */
.nav-menu li.has-submenu {
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    height: 100vh;
}

.hero-slide-content {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 54, 93, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: #fff;
    color: #1a365d;
}

/* Botões das setas - circulares e centralizados */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    position: absolute; /* importante para aparecer */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px; /* Ajuste a distância da esquerda */
}

.swiper-button-next {
    right: 10px; /* Ajuste a distância da direita */
}

/* Remover ícone padrão do Swiper */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Estilo do SVG (seta) dentro do botão */
.swiper-button-prev svg,
.swiper-button-next svg {
    width: 16px;
    height: 16px;
    stroke: #aaa;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    user-select: none;
}

/* Indicadores (bolinhas) */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ff6b35; /* Laranja ativo */
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.4); /* Ajuste conforme o quanto quer escurecer */
}

/* Conteúdo */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: #fff;
    color: #1a365d;
}

.btn-primary,
.btn-secondary:focus {
    outline: none !important;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre */
.sobre {
    padding: 100px 0;
    padding-top: 180px;
    background: #f7fafc;
}

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

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

.sobre-text h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.sobre-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

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

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

.stat-item h4 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-item p {
    color: #718096;
    font-weight: 500;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a365d, #ff6b35);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

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

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    background: #1a365d;
    color: #fff;
}

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

.section-title-prod{
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-subtitle-prod {
    font-size: 1.1rem;
    color: #fff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.servico-card {
    background: #fff;
    padding: 0 0 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

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

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

.servico-card h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin: 20px 0 10px;
}

/*
.servico-card p {
    color: #4a5568;
    margin: 0 20px 20px;
    line-height: 1.6;
}*/

/* Lista centralizada, um item por linha, ícone junto */
.servico-card ul {
    list-style: none;
    text-align: left;
    padding: 0 20px;
    margin: 0 auto;
}

.servico-card li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #718096;
    margin-bottom: 8px;
    gap: 6px;
    white-space: nowrap;
    padding-left: 0;
    font-weight: 500;
}

.servico-card li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
}


/* Marcas */
.marcas {
    padding: 100px 0;
    background: #f7fafc;
}

.marca-item {
    background: #fff;
    width: 300px;
    height: 150px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: grab;
}

.marca-item:active {
    cursor: grabbing;
}

.marca-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.marca-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.marcas-swiper {
    padding-top: 30px;
    position: relative;
    overflow: visible !important;

}

.marcas-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.marcas-swiper-wrapper {
    position: relative;
}

/* setas */
.marcas-prev,
.marcas-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    position: absolute;
    top: 63.5%; /* Ajuste conforme o alinhamento desejado */
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

/* Posição das setas */
.marcas-prev {
    left: 0px;
}

.marcas-next {
    right: 0px;
}

/* Remove conteúdo padrão do Swiper */
.marcas-prev::after,
.marcas-next::after {
    display: none;
}

/* Estilo do SVG */
.marcas-prev svg,
.marcas-next svg {
    width: 22px;
    height: 22px;
    stroke: #aaa;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    user-select: none;
}

/* Quando ocultar seta */
.marcas-prev.hidden,
.marcas-next.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Contêiner das setas para posicionar */
.marcas-swiper {
    position: relative; /* importante pra posicionar as setas dentro dela */
}

/* Contato */
.contato {
    padding: 100px 0;
    padding-top: 180px;
    background: #f7fafc;
}

.contato .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* espaçamento lateral para não grudar nas bordas */
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Ajuste para alinhar o topo dos dois blocos */
    align-items: start; 
}

.contato-info {
    /* Adiciona padding-left para mover o conteúdo para a direita */
    padding-left: 20px; /* Ajuste este valor conforme a necessidade */
}

.subtitle-contato {
    font-size: 1.8rem;
    color: #1a365d;
    margin-left: 40px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.contato-info h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 40px; /* Espaçamento aumentado para o endereço */
}

.info-item {
    display: flex;
    gap: 70px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: -2px;
    min-width: 25px;
    margin-left: 40px;
}

.info-item h4 {
    color: #1a365d;
    margin-bottom: 5px;
}

.info-item p {
    color: #4a5568;
    line-height: 1.6;
}

.info-item h4,
.info-item p {
    margin-left: -50px;
}

.contato-form {
    max-width: 800px;
    padding: 40px;
    border-radius: 15px;
    /* Remove o margin-top para alinhar com o topo do .contato-info */
    margin-top: 0; 
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 30px;
}

.contato-form button {
    display: block;
    margin: 30px auto 0 auto; /* margem opcional no topo, centraliza no eixo X */
}

/* Orçamento */
.orcamento {
    padding: 100px 0;
    padding-top: 180px;
    background: #f7fafc;
}

.orcamento-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary,
.btn-secondary:focus {
    outline: none !important;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #ff6b35;
}

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

/* Footer */
.footer {
    margin-top: auto;
    position: relative;
    z-index: 1;
    background: #1a365d;
    color: #fff;
    padding: 60px 0 20px;
}

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

.logo-img-footer {
    max-height: 50px;
    height: auto;
    width: auto;
    margin-left: -5px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 10px;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #cbd5e0;
}

.orcamento-form button {
    display: block;
    margin: 30px auto 0 auto; /* margem opcional no topo, centraliza no eixo X */
}


/* WhatsApp Button */
/* CONTÊINER FIXO */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* BOTÃO VERDE PADRÃO */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* HOVER SUAVE */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* REMOVE FUNDO AZUL DE CLIQUE EM ALGUNS NAVEGADORES */
.whatsapp-btn:focus,
.whatsapp-btn:active {
    outline: none;
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* MENU OCULTO */
.whatsapp-menu {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    overflow: hidden;
}

/* LINKS DO MENU */
.whatsapp-menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    background: #fff;
    transition: background 0.2s;
    white-space: nowrap;
}

/* BANDEIRAS PAGAMENTO */
.footer-bandeiras {
    position: absolute;
    bottom: 60px; /* distância do fundo do footer */
    left: 20px;   /* distância da borda esquerda */
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 2;
}

.footer-bandeiras img {
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Ajustes por logo */
.logo-visa {
    height: 50px;
}

.logo-master {
    height: 30px;
}

.logo-pix {
    height: 22px;
}

.logo-bndes {
    height: 25px;
}

.footer-bandeiras img:hover {
    transform: scale(1.05);
}

.whatsapp-menu a:hover {
    background: #f1f1f1;
}

/* Container precisa ser position: relative */
.select-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Choices base */
.select-wrapper .choices {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Estilo do dropdown */
.select-wrapper .choices__list--dropdown {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    overflow-wrap: break-word;
    z-index: 9999;
}

/* Código das demais telas */

.produtos {
    padding: 80px 0;
    background: #f7fafc;
    padding-top: 180px;
}

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

.section-title {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
}

.lista-produtos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.produto-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.produto-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.produto-info h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 8px;
}

.produto-info p {
    color: #4a5568;
    font-size: 1rem;
}

/* CSS dos botões "Ler mais" em produtos*/

.produto-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.produto-img img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.produto-info {
    flex: 1;
    min-width: 250px;
}

.produto-info h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.produto-info p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.more-text {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #1a365d;
    border-radius: 8px;
}

.more-text h4 {
    margin-top: 10px;
    color: #1a365d;
    font-size: 1.1rem;
}

.more-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.more-text ul li {
    margin-bottom: 6px;
    color: #555;
}

.ler-mais {
    background: none;
    border: 2px solid #1a365d;
    color: #1a365d;
    cursor: pointer;
    font-weight: 600;
    padding: 8px 16px;
    margin-top: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.ler-mais:hover {
    background: #1a365d;
    color: #fff;
}

/* CSS do Zoom nas imagens */

.produto-img {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.produto-img img {
    width: 200px; /* Ou ajuste o tamanho que quiser */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.produto-img::after {
    content: "\1F50D"; /* Emoji de lupa, substituível por SVG se quiser */
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.produto-img:hover::after {
    opacity: 1;
}

.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.zoom-modal-content {
    width: 65vw;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    object-fit: contain;
}


.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* CSS Outline */

a:focus {
    outline: none !important;
}

.ler-mais:focus {
    outline: none !important;
}

/* Garante que todos os containers respeitem a largura da tela */
.container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

/* TELAS MUITO PEQUENAS */

@media (min-width: 300px) and (max-width: 499px) {
    .header-top,
    .contact-info {
        display: none;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hamburguer {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu .submenu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .logo-img {
        max-height: 45px;
    }

    .hamburguer.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburguer.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburguer.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .submenu-toggle-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .submenu-toggle {
        display: inline;
        font-size: 20px;
        cursor: pointer;
        color: #2d3748;
        transition: transform 0.3s ease;
    }

    .has-submenu .submenu {
        display: none;
        flex-direction: column;
        background: #fff;
        padding-left: 15px;
        gap: 10px;
    }

    .has-submenu.open .submenu {
        display: flex;
    }

    .nav-menu li.has-submenu:hover > .submenu {
        display: none !important;
    }

    .sobre-text h3,
    .sobre-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contato-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .subtitle-contato,
    .contato-form h3 {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }

    .contato-form {
        max-width: 800px;  /* igual ao orçamento */
        width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .btn-primary {
        display: block;
        margin: 20px auto 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.7rem;
    }

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

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

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

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marcas-arrow {
        display: none;
    }

    .form-row {
        display: block;
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 15px;
        width: 100%;
    }

    .form-row .form-group:not(:last-child) {
        margin-right: 0;
    }

    .orcamento-form {
        padding: 30px 20px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 0 auto;
        margin-top: 20px;
    }

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

    .footer-section h4 {
        text-align: left;
        margin-left: 0;
    }

    .footer-bandeiras {
        order: unset; /* só por segurança */
        grid-column: 1 / -1; /* força ocupar linha inteira */
        margin-top: 10px;
        justify-content: center; /* centraliza as bandeiras */
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-menu {
        bottom: 60px;
    }
}

/* SMARTPHONES MEDIANOS */

@media (min-width: 500px) and (max-width: 699px) {
    .header-top,
    .contact-info {
        display: none;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hamburguer {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu .submenu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .logo-img {
        max-height: 45px;
    }

    .hamburguer.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburguer.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburguer.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .submenu-toggle-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .submenu-toggle {
        display: inline;
        font-size: 20px;
        cursor: pointer;
        color: #2d3748;
        transition: transform 0.3s ease;
    }

    .has-submenu .submenu {
        display: none;
        flex-direction: column;
        background: #fff;
        padding-left: 15px;
        gap: 10px;
    }

    .has-submenu.open .submenu {
        display: flex;
    }

    .nav-menu li.has-submenu:hover > .submenu {
        display: none !important;
    }

    .sobre-text h3,
    .sobre-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contato-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .subtitle-contato,
    .contato-form h3 {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }

    .contato-form {
        max-width: 800px;  /* igual ao orçamento */
        width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .btn-primary {
        display: block;
        margin: 20px auto 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.7rem;
    }

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

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

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

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marcas-arrow {
        display: none;
    }

    .form-row {
        display: block;
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 15px;
        width: 100%;
    }

    .form-row .form-group:not(:last-child) {
        margin-right: 0;
    }

    .orcamento-form {
        padding: 30px 20px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 0 auto;
        margin-top: 20px;
    }

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

    .footer-section h4 {
        text-align: left;
        margin-left: 0;
    }

    .footer-bandeiras {
        order: unset; /* só por segurança */
        grid-column: 1 / -1; /* força ocupar linha inteira */
        margin-top: 10px;
        justify-content: center; /* centraliza as bandeiras */
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-menu {
        bottom: 60px;
    }
}

/* SMARTPHONES GRANDES e TABLETS PEQUENOS */

@media (min-width: 700px) and (max-width: 899px) {
    .header-top {
        display: none;
    }

    .contact-info {
        display: none;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hamburguer {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu .submenu {
        position: static; /* remove o posicionamento absoluto no mobile */
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .logo-img {
        max-height: 45px;
    }

    .hamburguer.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburguer.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburguer.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .has-submenu .submenu {
        display: none;
        flex-direction: column;
        background: #fff;
        padding-left: 15px;
        gap: 10px;
    }

    .has-submenu.open .submenu {
        display: flex;
    }

    .nav-menu li.has-submenu:hover > .submenu {
        display: none !important; /* Desativa o hover no mobile */
    }

    .sobre-text h3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .contato-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .subtitle-contato {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }

    .contato-form {
        max-width: 100%;
        padding: 30px 10px; /* margem interna bem pequena nas laterais */
        margin: 0 1.1.5px; /* opcional: uma leve margem externa pra não colar 100% */
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .contato-form h3 {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }

    .btn-primary {
        display: block;
        margin: 20px auto 0 auto;
        text-align: center;
    }

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

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

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

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

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

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

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marcas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marcas-arrow {
        display: none;
    }

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

    .form-row {
        display: block;
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 15px;
        width: 100%;
    }

    .form-row .form-group:not(:last-child) {
        margin-right: 0;
    }

    .orcamento-form {
        padding: 30px 20px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 0 auto;
        margin-top: 20px;
    }

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

    .footer-section h4 {
        text-align: left;
    }

    .footer-bandeiras {
        order: unset; /* só por segurança */
        grid-column: 1 / -1; /* força ocupar linha inteira */
        margin-top: 10px;
        justify-content: center; /* centraliza as bandeiras */
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

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

    .whatsapp-menu {
        bottom: 60px;
    }
}

/* TABLETS GRANDES E NOTEBOOKS PEQUENOS */

@media (min-width: 900px) and (max-width: 1199px) {
    .hamburguer {
        display: none;
    }

    .logo-img {
        max-height: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .btn-primary {
        display: block;
        margin: 20px auto 0 auto;
        text-align: center;
    }

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

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

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
    }

    .footer-section {
        min-width: unset;
    }

    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    .site-wrapper {
        padding-bottom: 120px; /* Ajuste conforme a altura real do footer */
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-menu {
        bottom: 70px;
    }
}

/* DESKTOPS GRANDES */

@media (min-width: 1200px) {
    .hamburguer {
        display: none;
    }

    .logo-img {
        max-height: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .btn-primary {
        display: block;
        margin: 20px auto 0 auto;
        text-align: center;
    }

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

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

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
    }

    .footer-section {
        min-width: unset;
    }

    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    .site-wrapper {
        padding-bottom: 120px; /* Ajuste conforme a altura real do footer */
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-menu {
        bottom: 70px;
    }
}

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

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

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

    .servico-card,
    .contato-form,
    .orcamento-form {
        padding: 30px 20px;
    }

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

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

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

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Evita que o dropdown ultrapasse em resoluções menores */
@media screen and (max-width: 1024px) {
  .select-wrapper {
        overflow-x: hidden;
  }
}

/* Evita quebras feias em telas menores mesmo com desktop forçado */
@media screen and (max-width: 991px) {
  footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
  }

  footer .footer-column {
        min-width: unset;
  }
}

/*
body::after {
    content: 'debug';
    display: block;
    background: red;
    height: 5px;
}
