Home

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: ‘Poppins’, sans-serif;
color: #333;
overflow-x: hidden;
}

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

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
position: fixed;
bottom: 25px;
right: 25px;
width: 60px;
height: 60px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
z-index: 1000;
transition: all 0.3s ease;
animation: pulse 2s infinite;
}

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

.whatsapp-icon {
font-size: 28px;
color: white;
}

@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* NAVBAR */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(26, 26, 46, 0.95);
backdrop-filter: blur(10px);
z-index: 999;
padding: 15px 0;
transition: 0.3s;
}

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

.logo {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
text-decoration: none;
}

.nav-menu {
display: flex;
list-style: none;
gap: 25px;
}

.nav-link {
color: rgba(255,255,255,0.85);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: 0.3s;
position: relative;
}

.nav-link::after {
content: ”;
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: #ff8f00;
transition: 0.3s;
}

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

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

.hamburger {
display: none;
background: none;
border: none;
font-size: 28px;
color: #fff;
cursor: pointer;
}

/* HERO */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
background: linear-gradient(135deg, #0d47a1 0%, #1a1a2e 70%, #0d0d1a 100%);
padding: 120px 0 80px;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(“data:image/svg+xml,%3Csvg width=’60’ height=’60’ viewBox=’0 0 60 60′ xmlns=’http://www.w3.org/2000/svg’%3E%3Cg fill=’none’ fill-rule=’evenodd’%3E%3Cg fill=’%23ffffff’ fill-opacity=’0.03’%3E%3Cpath d=’M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z’/%3E%3C/g%3E%3C/g%3E%3C/svg%3E”);
pointer-events: none;
}

.hero-content {
position: relative;
z-index: 1;
text-align: center;
}

.hero h1 {
font-size: 3rem;
font-weight: 800;
color: #fff;
line-height: 1.2;
margin-bottom: 20px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.highlight {
color: #ff8f00;
}

.hero-subtitle {
font-size: 1.1rem;
color: rgba(255,255,255,0.85);
max-width: 650px;
margin: 0 auto 35px;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 32px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
border: none;
font-family: ‘Poppins’, sans-serif;
}

.btn-primary {
background: #ff8f00;
color: #1a1a2e;
}

.btn-primary:hover {
background: #ffa000;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(255, 143, 0, 0.4);
}

.btn-whatsapp {
background: #25d366;
color: #fff;
}

.btn-whatsapp:hover {
background: #20bd5a;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-tags {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}

.hero-tags span {
background: rgba(255,255,255,0.1);
color: rgba(255,255,255,0.9);
padding: 8px 18px;
border-radius: 25px;
font-size: 0.85rem;
border: 1px solid rgba(255,255,255,0.15);
}

/* SEÇÕES GENÉRICAS */
section {
padding: 90px 0;
}

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

.section-header h2 {
font-size: 2.2rem;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 12px;
}

.section-header p {
font-size: 1.05rem;
color: #666;
max-width: 550px;
margin: 0 auto;
}

.section-header.light h2 {
color: #fff;
}

.section-header.light p {
color: rgba(255,255,255,0.8);
}

/* SERVIÇOS */
.servicos {
background: #fff;
}

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

.servico-card {
background: #fff;
border: 1px solid #eee;
border-radius: 16px;
padding: 35px 25px;
text-align: center;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.servico-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #0d47a1, #ff8f00);
transform: scaleX(0);
transform-origin: left;
transition: 0.4s;
}

.servico-card:hover::before {
transform: scaleX(1);
}

.servico-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(13, 71, 161, 0.1);
border-color: #0d47a1;
}

.servico-icon {
font-size: 3rem;
margin-bottom: 15px;
}

.servico-card h3 {
font-size: 1.2rem;
font-weight: 600;
color: #1a1a2e;
margin-bottom: 12px;
}

.servico-card p {
font-size: 0.9rem;
color: #666;
line-height: 1.6;
margin-bottom: 18px;
}

.btn-servico {
display: inline-block;
color: #0d47a1;
font-weight: 600;
text-decoration: none;
font-size: 0.9rem;
transition: 0.3s;
}

.btn-servico:hover {
color: #ff8f00;
}

/* DIFERENCIAIS */
.diferenciais {
background: linear-gradient(135deg, #0d47a1, #1565c0);
}

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

.diferencial-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 16px;
padding: 35px 25px;
text-align: center;
transition: 0.4s;
}

.diferencial-card:hover {
background: rgba(255,255,255,0.18);
transform: translateY(-5px);
}

.diferencial-icon {
font-size: 2.5rem;
margin-bottom: 15px;
}

.diferencial-card h3 {
font-size: 1.1rem;
font-weight: 600;
color: #fff;
margin-bottom: 10px;
}

.diferencial-card p {
font-size: 0.9rem;
color: rgba(255,255,255,0.8);
line-height: 1.6;
}

/* GALERIA */
.galeria {
background: #f8f9fa;
}

.galeria-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.galeria-item {
aspect-ratio: 4/3;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
transition: all 0.4s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}

.galeria-item span {
color: #fff;
font-weight: 600;
font-size: 1rem;
padding: 15px;
background: rgba(0,0,0,0.4);
border-radius: 8px;
backdrop-filter: blur(4px);
transition: 0.3s;
}

.galeria-item:hover {
transform: scale(1.03);
box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.galeria-item:hover span {
background: rgba(0,0,0,0.6);
transform: scale(1.1);
}

.galeria-cta {
text-align: center;
margin-top: 40px;
}

/* DEPOIMENTOS */
.depoimentos {
background: #fff;
}

.depoimentos-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.depoimento-card {
background: #f8f9fa;
border-radius: 16px;
padding: 35px 30px;
text-align: center;
position: relative;
}

.depoimento-aspas {
font-size: 3rem;
color: #0d47a1;
opacity: 0.2;
margin-bottom: 10px;
}

.depoimento-card p {
font-size: 0.95rem;
color: #555;
line-height: 1.7;
font-style: italic;
margin-bottom: 20px;
}

.depoimento-author strong {
color: #1a1a2e;
font-size: 1rem;
}

/* FAQ */
.faq {
background: #f8f9fa;
}

.faq-list {
max-width: 750px;
margin: 0 auto;
}

.faq-item {
background: #fff;
border-radius: 12px;
margin-bottom: 12px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
width: 100%;
padding: 20px 25px;
background: #fff;
border: none;
text-align: left;
font-size: 1rem;
font-weight: 500;
color: #1a1a2e;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-family: ‘Poppins’, sans-serif;
transition: 0.3s;
}

.faq-question:hover {
color: #0d47a1;
}

.faq-toggle {
font-size: 1.5rem;
color: #0d47a1;
transition: 0.3s;
font-weight: 300;
}

.faq-item.active .faq-toggle {
transform: rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: all 0.4s ease;
padding: 0 25px;
}

.faq-item.active .faq-answer {
max-height: 200px;
padding: 0 25px 20px;
}

.faq-answer p {
color: #666;
line-height: 1.7;
font-size: 0.95rem;
}

/* CONTATO */
.contato {
background: linear-gradient(135deg, #1a1a2e, #0d47a1);
}

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

.contato-form form {
display: flex;
flex-direction: column;
gap: 15px;
}

.contato-form input,
.contato-form