html, body {
  overflow-x: hidden;
  overflow-y: auto;
}


/* ============================================================
   PALETA E BASE GLOBAL
 ============================================================ */
:root {
    --azul: #2BA3F4;
    --azul2: #0052A5;
    --vermelho: #E0211E;

    --preto: #000;
    --branco: #fff;

    --cinza-claro: #f5f5f5;
    --cinza-medio: #eee;

    --shadow: 0 12px 30px rgba(0,0,0,0.15);
    --transition: .32s ease;
}

/* Reset responsivo */
*,
*::before,
*::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--branco);
    color: #111;
    scroll-behavior: smooth;

}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* ============================================================
   HEADER + NAVEGAÇÃO
   ============================================================ */
/* ============================================================
   HEADER + NAVEGAÇÃO
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    padding: 10px 0;
    z-index: 999;
}

/* Container do header */
.nav-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 8px;   /* logo mais à esquerda */
}

/* LOGO */
.logo {
    height: clamp(70px, 10vw, 120px);
    object-fit: contain;
}

/* MENU DESKTOP */
#menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* links do menu */
#menu a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
    padding: 6px 8px;
}
#menu a:hover {
    color: var(--azul2);
}

/* Botão Área do Cliente */
.menu-parent {
    background: var(--vermelho);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

/* ============================================================
   CONTATOS NO HEADER (TELEFONE + E-MAIL)
   ============================================================ */
.header-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    white-space: nowrap;
    transition: var(--transition);
}

.header-contact a i {
    font-size: 16px;
    color: var(--azul2);
}

.header-contact a:hover {
    color: var(--azul2);
}

/* ============================================================
   RESPONSIVO – MOBILE
   ============================================================ */
@media (max-width: 900px) {

    .header {
        padding: 8px 0;
    }

    .nav-area {
        padding-left: 6px;
    }

    .logo {
        height: 70px;
    }

    /* esconde contatos no topo no mobile */
    .header-contact {
        display: none;
    }
}


/* --- Dropdown --- */
.dropdown { position: relative; }

.dropdown-content {
    position: absolute;
    top: 48px;
    left: 0;
    width: 220px;

    background: var(--branco);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 10px 0;

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: var(--transition);
}

.dropdown-content.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: #000;
    font-weight: 600;
}
.dropdown-content a:hover {
    background: var(--azul);
    color: #fff;
}

/* ============================================================
   MENU MOBILE
   ============================================================ */
.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-mobile span {
    width: 32px;
    height: 3px;
    background: #000;
    border-radius: 4px;
    transition: .35s ease;
}

/* Ícone em X */
.menu-mobile.active span:nth-child(1){ transform:rotate(45deg) translate(6px,6px); }
.menu-mobile.active span:nth-child(2){ opacity:0; }
.menu-mobile.active span:nth-child(3){ transform:rotate(-45deg) translate(7px,-7px); }

#menu.mobile-open {
    display: none;
}

@media (max-width: 900px) {

    #menu { display: none; }

    .menu-mobile { display: flex; }

    #menu.mobile-open {
        display: flex !important;
        flex-direction: column;
        gap: 12px;

        position: absolute;
        top: 100%;
        right: 5%;
        width: 88%;
        max-width: 360px;

        background: #fff;
        padding: 14px;
        border-radius: 12px;
        box-shadow: var(--shadow);

        opacity: 0;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    #menu.mobile-open.show {
        opacity: 1;
        transform: translateY(0);
    }

    #menu.mobile-open a {
        color: #000;
        padding: 12px 0;
        font-size: 1.1rem;
    }

    /* Submenu no mobile */
    #menu.mobile-open .dropdown-content {
        position: relative;
        width: 100%;
        background: var(--cinza-medio);
        box-shadow: none;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }

    #menu.mobile-open .dropdown-content.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}

/* ============================================================
 /* ================= HERO CAROUSEL ================= */

/* ================= MOBILE ================= */
/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
}

/* ================= CAROUSEL ================= */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ================= SLIDES ================= */
.hero-slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;       /* CENTRALIZA VERTICAL */
  justify-content: center;   /* CENTRALIZA HORIZONTAL */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Overlay escuro */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Slide ativo */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ================= CONTEÚDO ================= */
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 650px;
  padding: 0 20px;

  text-align: center; /* CENTRALIZA TEXTO */
  color: #fff;
}

/* ================= TIPOGRAFIA ================= */
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* ================= BOTÃO ================= */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;

  background: #0d6efd;
  color: #fff;
  border-radius: 6px;

  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #084298;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-content {
    max-width: 90%;
  }
}


/* ============================================================
   TÍTULOS GERAIS
   ============================================================ */
.title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--vermelho);
    text-align: center;
    font-weight: 800;
}

/* ============================================================
   EMPRESA (MODERNA PREMIUM)
   ============================================================ */
/* ============================================
   SEÇÃO SOBRE A EMPRESA — PREMIUM E SOFISTICADA
=============================================== */

.empresa-modern-section {
    padding: 130px 20px;
    background: #ffffff; /* fundo branco */
}

.empresa-modern-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* IMAGEM — moldura premium com brilho */
.image-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    transition: 0.45s cubic-bezier(.25,.1,.25,1);
    max-width: 520px;
}

.image-frame img {
    width: 100%;
    display: block;
}

/* brilho suave como sites de tecnologia */
.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, transparent 55%, rgba(255,255,255,0.18));
    pointer-events: none;
}

.image-frame:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.28);
}

/* TEXTO — elegante e profissional */
.empresa-modern-text {
    max-width: 550px;
}

.empresa-tag {
    padding: 6px 14px;
    background: var(--azul2);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-block;
}

.empresa-title {
    font-size: 2.9rem;
    margin: 20px 0 15px;
    line-height: 1.15;
    color: var(--vermelho);
    font-weight: 800;
}

.empresa-modern-text p {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

/* BOTÃO */
.empresa-btn {
    margin-top: 22px;
    padding: 14px 36px;
    display: inline-block;
    font-size: 1.05rem;
}

/* ============================================
        ANIMAÇÃO DE ENTRADA (fade + slide)
=============================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVIDADE — Mobile Premium
=============================================== */

@media (max-width: 1024px) {
    .empresa-title {
        font-size: 2.4rem;
    }

    .empresa-modern-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 900px) {

    .empresa-modern-container {
        flex-direction: column;
        text-align: center;
        gap: 45px;
    }

    .image-frame {
        max-width: 90%;
    }

    .empresa-title {
        font-size: 2.2rem;
    }

    .empresa-modern-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .empresa-title {
        font-size: 1.9rem;
    }

    .empresa-btn {
        width: 100%;
        text-align: center;
    }
}


/* ============================================================
   SERVIÇOS PREMIUM
   ============================================================ */
.servicos-modern-section {
    padding: 120px 20px;
    background: var(--cinza-claro);
}

.servicos-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.servicos-modern-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.servico-modern-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    max-width: 330px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .35s ease;
}

.servico-modern-card:hover {
    transform: translateY(-10px);
}

.servico-icon-bg {
    width: 90px;
    height: 90px;
    background: var(--azul);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 18px;
}

/* ============================================================
   PRODUTOS GRID
   ============================================================ */
.produtos-section {
    padding: 120px 20px;
    background: var(--branco);
}

.produtos-grid {
    display: grid;
    gap: 30px;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.produto-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: .3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
}

/* ============================================================
   CONTATO + FORMULÁRIO
   ============================================================ */
.contato-lead-section {
    padding: 120px 20px;
    background: var(--cinza-claro);
}

.contato-lead-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contato-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    background: var(--cinza-medio);
    border: none;
    border-radius: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 35px;
}

/* ============================================================
   FADE ANIMATION
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: .6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ================= LOGO ================= */
.logo {
  height: 120px;            /* altura real do header */
  width: auto;
  max-width: 100%;
  object-fit: contain;

transform: scale(2.0);  /* aumenta visualmente */
  transform-origin: left center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .logo {
    transform: scale(1.8);
  }
}

/* ============================================================
   LOGO MAIOR E MAIS À ESQUERDA – DESKTOP
   ============================================================ */
@media (min-width: 900px) {

  /* remove o respiro lateral do header */
  .nav-area {
    padding-left: 0;
  }

  /* aumenta e desloca a logo */
  .logo {
    height: 155px;        /* ligeiramente maior */
    margin-left: -100px;  /* puxa para a esquerda */
  }

}



/* ================= WHATSAPP FLOAT ================= */
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;

  width: 60px;
  height: 60px;

  background-color: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2147483647; /* máximo */

  /* Correções para iOS */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);

  animation: pulse-whatsapp 1.8s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ================= ANIMAÇÃO ================= */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}


