:root { 
    --blue: #002e5b; 
    --blue-dark: #001a33;
    --yellow: #ffcc00; 
    --yellow-hover: #e6b800;
    --green: #25d366;
    --light-bg: #f5f7fa;
    --text-dark: #333;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--light-bg); color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR E LOGO */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 5%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo { display: flex; align-items: center; max-width: 220px; }
.logo img { width: 100%; height: auto; display: block; }
.menu a { margin: 0 15px; text-decoration: none; color: var(--blue); font-weight: bold; }
.contato-topo { display: flex; align-items: center; gap: 15px; }
.tel-topo { font-weight: bold; color: var(--blue-dark); }
.btn-cta-small { background: var(--yellow); color: var(--blue-dark); border: none; padding: 10px 20px; font-weight: bold; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.btn-cta-small:hover { background: var(--yellow-hover); }

/* HERO E FORMULÁRIO (Opção 1: Com corte diagonal mantido) */
.hero { display: flex; background: var(--blue-dark); color: var(--white); min-height: 85vh; position: relative; overflow: hidden; }
.hero-content { flex: 1; padding: 60px 5%; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.tag-urgencia { font-weight: bold; margin-bottom: 15px; letter-spacing: 1px; color: var(--yellow); }
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 15px; }
.destaque { color: var(--yellow); }
.hero p { font-size: 1.1rem; margin-bottom: 20px; max-width: 500px; }
.form-box { background: var(--white); color: var(--text-dark); padding: 25px; border-radius: 10px; max-width: 420px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 5px solid var(--yellow); }
.form-box h3 { margin-bottom: 15px; color: var(--blue); font-size: 1.3rem; }
input, select { width: 100%; padding: 12px; margin-bottom: 12px; border-radius: 5px; border: 1px solid #ccc; font-size: 1rem; background: #f9f9f9; }
input:focus, select:focus { border-color: var(--blue); outline: none; }
.btn-enviar { width: 100%; padding: 15px; background: var(--green); color: var(--white); border: none; border-radius: 5px; font-weight: bold; font-size: 1.1rem; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
.btn-enviar:hover { transform: scale(1.02); }
.seguranca { font-size: 0.8rem; color: #666; margin-top: 10px; text-align: center; }
.hero-image { flex: 1; background: url('../img/fundo.jpeg') center/cover; position: relative; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }

/* SERVIÇOS */
.secao-servicos { background: var(--blue); padding: 80px 0; color: var(--white); }
.titulo-secao { text-align: center; font-size: 2.5rem; margin-bottom: 10px; }
.subtitulo-secao { text-align: center; margin-bottom: 50px; color: #cbd5e1; }
.grid-servicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card-servico { background: var(--white); color: var(--text-dark); padding: 30px; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); display: flex; flex-direction: column; justify-content: space-between; }
.card-servico h3 { color: var(--blue); margin-bottom: 15px; font-size: 1.4rem; }
.card-servico p { margin-bottom: 25px; color: #555; }
.btn-outline { background: lightgoldenrodyellow; border: 2px solid var(--blue); color: var(--blue); padding: 10px; font-weight: bold; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* GALERIA HÍBRIDA (Fotos Normais + Vídeos Story) */
.secao-galeria { padding: 80px 0; background: var(--light-bg); }
.subtitulo-galeria { color: var(--blue); margin-top: 40px; margin-bottom: 20px; font-size: 1.5rem; border-left: 4px solid var(--yellow); padding-left: 10px; }
.grid-galeria { display: grid; gap: 20px; }
.grid-fotos { grid-template-columns: repeat(3, 1fr); }
.grid-videos { grid-template-columns: repeat(3, 1fr); }

/* FOTOS - Altura Fixa (Original) */
.item-foto { height: 280px; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); background: #000; transition: transform 0.3s ease; }
.item-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.item-foto:hover { transform: translateY(-5px); }
.item-foto:hover img { transform: scale(1.1); }

/* VÍDEOS - Formato Story (9:16) */
.item-video { aspect-ratio: 9 / 16; position: relative; overflow: hidden; border-radius: 15px; box-shadow: 0 8px 25px rgba(0,0,0,0.15); background: #000; transition: transform 0.3s ease; }
.item-video video { width: 100%; height: 100%; object-fit: cover; }
.item-video:hover { transform: translateY(-8px); }

/* QUEM SOMOS */
.secao-sobre { padding: 80px 0; background: var(--white); }
.sobre-flex { display: flex; gap: 50px; align-items: center; }
.sobre-texto { flex: 1; }
.tag-sobre { color: var(--blue); font-weight: bold; text-transform: uppercase; }
.sobre-texto h2 { font-size: 2.5rem; color: var(--blue-dark); margin-bottom: 20px; }
.sobre-texto p { margin-bottom: 15px; font-size: 1.1rem; line-height: 1.6; }
.btn-cta-large { background: var(--yellow); color: var(--blue-dark); border: none; padding: 15px 30px; font-weight: bold; font-size: 1.1rem; border-radius: 5px; cursor: pointer; margin-top: 15px; transition: 0.3s; }
.btn-cta-large:hover { transform: scale(1.05); }
.sobre-img { flex: 1; text-align: center; }
.sobre-img img { width: 100%; border-radius: 10px; box-shadow: 15px 15px 0 var(--yellow); }

/* URGÊNCIA */
.faixa-urgencia { background: #000; padding: 40px 0; }
.flex-urgencia { display: flex; justify-content: space-between; align-items: center; }
.botoes-urgencia { display: flex; gap: 15px; }
.btn-urgencia { background: transparent; border: 2px solid var(--yellow); color: var(--yellow); text-decoration: none; padding: 15px 25px; font-weight: bold; border-radius: 5px; font-size: 1.1rem; }
.btn-wpp { background: #25D366; border-color: #25D366; color: #fff; cursor: pointer; }

/* RODAPÉ PROFISSIONAL E INSTAGRAM */
.footer { background: var(--blue-dark); color: #fff; padding: 60px 0 20px; border-top: 5px solid var(--yellow); }
.footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1; min-width: 250px; }
.logo-footer { max-width: 180px; margin-bottom: 20px; }
.footer-col h4 { color: var(--yellow); margin-bottom: 20px; font-size: 1.2rem; text-transform: uppercase; }
.footer-col p { color: #cbd5e1; line-height: 1.6; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 5px; }
.social-links { margin-top: 20px; }
.insta-link { display: inline-flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); padding: 8px 15px; border-radius: 5px; font-weight: bold; font-size: 0.9rem; transition: transform 0.3s; }
.insta-link:hover { transform: translateY(-3px); }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #94a3b8; }

/* FLUTUANTE */
.btn-flutuante { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; animation: pulse 2s infinite; }
.btn-flutuante img { width: 35px; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* RESPONSIVIDADE */
@media(max-width: 992px) {
    .grid-fotos, .grid-videos { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; padding: 15px; }
    .logo { max-width: 160px; }
    .menu { display: none; } 
    .hero { flex-direction: column; clip-path: none; padding-bottom: 40px; }
    .hero-image { display: none; }
    .hero-content { padding: 30px 5%; }
    .hero h1 { font-size: 2.2rem; }
    .sobre-flex, .flex-urgencia, .footer-flex { flex-direction: column; text-align: center; }
    .botoes-urgencia { flex-direction: column; width: 100%; margin-top: 20px; }
    .insta-link { justify-content: center; }
}
@media(max-width: 600px) {
    .grid-fotos { grid-template-columns: 1fr; }
    .item-foto { height: 220px; }
    .grid-videos { grid-template-columns: repeat(2, 1fr); gap: 10px; } /* Mantém formato de feed nos vídeos */
}