/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}

/* BASE */
body {
background: #f4f7fb;
color: #333;
padding-top: 60px; /* espaço pro header fixo */
}

img {
max-width: 100%;
height: auto;
display: block;
}

ul {
  list-style: none;
}

h2, h3 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
}

a {
  color: black;
  text-decoration: underline;
}

.btn {
   margin: 15px; 
}

#servicos a {
  display: inline-block;
  margin: 20px;
  background: #0a3d62;
  padding: 10px 40px;
  border-radius: 10px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer a {
    color: white;
}

.link-footer {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}

.imag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}

.mais img {
    max-width: 100px;
}

.imag img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 400px;
  border-radius: 10px;
}

.logo {
  width: 250px;
}

.icone {
  font-size: 30px;
  margin-bottom: 5px;
}

.container {
width: 90%;
max-width: 1100px;
margin: auto;
}

/* HEADER FIXO */
/* HEADER BASE */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
background: #0a3d62;
z-index: 999;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 0;
height: 80px;
}

header h1.logo {
  text-indent: -999px;
  overflow: hidden;
  width: 250px;
  height: 50px;
  background-image: url('../images/logo.png');
  background-position: center;
  background-size: 250px;
  background-repeat: no-repeat;
}

/* MENU DESKTOP */
.nav {
display: flex;
gap: 25px;
align-items: center;
}

.nav a {
color: white;
text-decoration: none;
font-weight: 600;
transition: 0.3s;
}

.nav a:hover {
opacity: 0.8;
}

/* HAMBURGUER */
.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.menu-toggle span {
width: 25px;
height: 3px;
background: white;
border-radius: 2px;
transition: 0.3s;
}

/* ANIMAÇÃO PARA VIRAR X */
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

/* SUAVIDADE */
.menu-toggle span {
transition: 0.3s ease;
}

/* HERO COM PARALLAX */
.hero {
background: linear-gradient(rgba(10,61,98,0.6), rgba(10,61,98,0.6)),
url('../images/banner.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
display: flex;
justify-content: center;
align-items: center;
min-height: 450px;
}

.hero h2 {
font-size: clamp(24px, 5vw, 36px);
margin-bottom: 15px;
}

.hero p {
font-size: clamp(14px, 3.5vw, 18px);
margin-bottom: 25px;
}

/* BOTÕES */
.cta-buttons {
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
flex-wrap: wrap;
}

.cta-buttons a {
width: auto;
}

.btn-primary {
background: #25d366;
color: white;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
animation: pulse 1.8s infinite;
}

.btn-secondary {
background: #ff9f1a;
color: white;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
}

.btn-primary:hover, .btn-secondary:hover {
transform: scale(1.05);
}

/* SEÇÕES */
section {
padding: 60px 20px;
text-align: center;
}

/* GRID */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 30px;
}

/* CARDS */
.card {
background: #f4f7fb;
padding: 10px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
transition: 0.3s;
}

.card:hover {
transform: translateY(-5px);
}

.servico {
display: block;
background: white;
padding: 20px;
border-radius: 12px;
text-decoration: none;
color: #333;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
transition: 0.3s;
}

.servico:hover {
transform: translateY(-5px);
}

.alinhar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 250px;
  background-image: url('../images/image.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  border-radius: 12px;
  box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

.cta-destaque {
background: linear-gradient(135deg, #0a3d62, #1e5f8a);
color: white;
text-align: center;
padding: 70px 20px;
margin-bottom: 20px;
}

.cta-destaque h2 {
font-size: clamp(22px, 5vw, 34px);
margin-bottom: 20px;
line-height: 1.3;
}

.cta-text {
max-width: 700px;
margin: 0 auto 15px;
font-size: 16px;
line-height: 1.6;
opacity: 0.95;
}

.cta-text.strong {
font-weight: 600;
opacity: 1;
}

.cta-destaque .cta-buttons {
margin-top: 25px;
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}

.cta-destaque .btn-secondary {
background: white;
color: #0a3d62;
padding: 14px 22px;
border-radius: 10px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
}

.cta-destaque .btn-secondary:hover {
transform: scale(1.05);
}

.cta-extra {
display: block;
margin-top: 20px;
font-size: 14px;
opacity: 0.9;
}

.seo-content {
background: #ffffff;
padding: 60px 20px;
}

.seo-content h2 {
text-align: center;
margin-bottom: 20px;
}

.seo-content h3 {
margin-top: 25px;
color: #0a3d62;
}

.seo-content p {
margin-bottom: 15px;
line-height: 1.7;
font-size: 15px;
}

.mapa {
background: #f4f7fb;
padding: 30px 10px;
text-align: center;
}

.mapa .subtitle {
margin-bottom: 25px;
opacity: 0.7;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVO */
.map-container iframe {
width: 100%;
height: 400px;
border: 0;
}

.avaliacoes {
background: #f4f7fb;
padding: 60px 20px;
text-align: center;
}

.avaliacoes h2 {
margin-bottom: 10px;
}

.subtitle {
margin-bottom: 30px;
opacity: 0.7;
}

.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.review-card {
background: white;
padding: 10px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
text-align: left;
transition: 0.3s;
}

.review-card:hover {
transform: translateY(-5px);
}

.stars {
color: #ff9f1a;
font-size: 18px;
margin-bottom: 10px;
}

.review-card p {
font-size: 15px;
line-height: 1.5;
margin-bottom: 15px;
}

.cliente {
font-weight: bold;
color: #0a3d62;
font-size: 14px;
}

.faq {
background: white;
padding: 60px 20px;
text-align: center;
}

.faq .subtitle {
margin-bottom: 30px;
opacity: 0.7;
}

.faq-item {
max-width: 700px;
margin: 0 auto 15px;
text-align: left;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-question {
width: 100%;
background: #0a3d62;
color: white;
padding: 15px;
font-size: 16px;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
border: none;
}

.faq-question span {
font-size: 20px;
transition: 0.3s;
}

.faq-answer {
background: #f4f7fb;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 15px;
}

.faq-answer p {
padding: 15px 0;
font-size: 14px;
}

/* ATIVO */
.faq-item.active .faq-answer {
max-height: 200px;
}

.faq-item.active .faq-question span {
transform: rotate(45deg);
}

.footer {
background: #1e272e;
color: white;
text-align: center;
padding: 50px 20px;
}

.footer h2 {
margin-bottom: 15px;
}

.footer-text {
max-width: 600px;
margin: 0 auto 25px;
opacity: 0.9;
line-height: 1.6;
}

.footer-buttons {
display: flex;
gap: 10px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 25px;
}

.footer-info {
margin-bottom: 20px;
font-size: 14px;
opacity: 0.8;
}

.copy {
font-size: 13px;
opacity: 0.6;
}

/* WHATSAPP PULSANDO */
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background: #25d366;
color: white;
font-size: 26px;
padding: 15px;
border-radius: 50%;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
z-index: 999;
animation: pulse 1.8s infinite;
}

@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}

/* 📱 RESPONSIVO REAL (SEM QUEBRAR DESIGN) */
@media (max-width: 800px) {

.hero {
height: 100vh;
background-position: left;
padding: 60px;
}

h2 {
  font-size: 20px;
}

p {
  font-size: 16px;
}

header h1.logo {
  background-size: 250px;
  width: 250px;
}

/* header empilhado */
.header .container {
gap: 10px;
}

/* menu centralizado */
.header nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.menu-toggle {
display: flex;
}

/* MENU ESCONDIDO */
.nav {
position: absolute;
top: 60px;
right: 0;
background: #0a3d62;
width: 100%;
flex-direction: column;
padding: 20px;
gap: 15px;

transform: translateX(100%);
transition: 0.3s;
}

/* MENU ATIVO */
.nav.active {
transform: translateX(0);
}


/* botões full width */
.cta-buttons {
flex-direction: column;
}

.cta-buttons a {
width: 100%;
max-width: 300px;
}

/* espaçamento menor */
section {
padding: 50px 15px;
}

.cta-destaque {
padding: 60px 15px;
}

.cta-destaque .cta-buttons {
flex-direction: column;
align-items: center;
}

.cta-destaque .cta-buttons a {
width: 100%;
max-width: 320px;
}

.cta-text {
font-size: 15px;
}

.map-container iframe {
height: 300px;
}

.review-card {
text-align: center;
}

.footer-buttons {
flex-direction: column;
align-items: center;
}

.footer-buttons a {
width: 100%;
max-width: 300px;
}

.footer-text {
font-size: 14px;
padding: 0 10px;
}

}