:root{
  --cyan:#25cfe0;
  --yellow:#ffd400;
  --dark:#30343b;
  --bg:#f7fafb;
  --title-font:'Roboto Slab','Rockwell','Georgia',serif;
}
*{
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}
body{
  margin:0;
  color:#555;
  background:#fff;
}
header{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 8%;
  border-bottom:1px solid #eee;
  background:white;
}
header img{
  width:100px;
}
nav a{
  margin:15px;
  text-decoration:none;
  color:var(--dark);
  font-weight:bold;
  text-transform:uppercase;
  font-size:14px;
}
.btn{
  display:inline-block;
  background:var(--cyan);
  color:white;
  padding:15px 28px;
  border-radius:30px;
  text-decoration:none;
  border:0;
  font-weight:bold;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.outline{
  background:white;
  color:var(--dark);
  border:1px solid #ddd;
}
.hero{
  padding:80px 8%;
  display:grid;
  grid-template-columns:1fr 400px;
  gap:50px;
  align-items:center;
  background:#fbfeff;
}
.hero span{
  color:#0daabd;
  font-weight:bold;
  letter-spacing:.08em;
  font-family:var(--title-font);
}
h1,h2,h3{
  color:var(--dark);
  text-transform:uppercase;
  letter-spacing:.02em;
  font-family:var(--title-font);
  font-weight:800;
}
h1{
  font-size:52px;
  line-height:1.1;
  margin:18px 0;
}
.hero p{
  font-size:20px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.hero-box{
  padding:40px;
  border-radius:35px;
  background:white;
  box-shadow:0 15px 40px #dceff2;
  text-align:center;
}
.hero-box img{
  width:200px;
  margin:auto;
}
section{
  padding:80px 8%;
}
h2{
  text-align:center;
  font-size:36px;
  margin-bottom:40px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
}
article,.benefits div{
  border-radius:25px;
  background:white;
  box-shadow:0 10px 30px #e8eef0;
  overflow:hidden;
  padding-bottom:20px;
}
article h3,article p{
  padding:0 20px;
}
article h3{
  margin:20px 0 10px;
}
.gray{
  background:var(--bg);
}
.benefits div{
  padding:30px;
  text-align:center;
}
.benefits b{
  color:var(--cyan);
  font-size:30px;
  display:block;
  margin-bottom:16px;
}
.benefits h3{
  margin:0 0 12px;
}
.benefits p{
  margin:0;
  padding:0 6px;
  line-height:1.5;
}
form{
  max-width:600px;
  margin:auto;
  display:grid;
  gap:15px;
}
input,select,textarea{
  padding:16px;
  border-radius:15px;
  border:1px solid #ddd;
  font-size:16px;
}
textarea{
  height:130px;
}
.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  background:#25d366;
  color:white;
  padding:15px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  text-transform:uppercase;
}
footer{
  background:#222;
  color:white;
  text-align:center;
  padding:30px;
}
footer img{
  width:90px;
  margin:0 auto 10px;
}
.service-placeholder{
  height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:78px;
  background:linear-gradient(135deg,#eafcff,#fff7c7);
  border-bottom:1px solid #eef3f4;
}
.service-placeholder b{
  font-weight:normal;
  line-height:1;
}
.service-placeholder-svg svg{
  width:92px;
  height:92px;
}
@media(max-width:800px){
  .hero{
    grid-template-columns:1fr;
  }
  header{
    height:auto;
    padding:20px;
    flex-direction:column;
    gap:15px;
  }
  h1{
    font-size:36px;
  }
  nav{
    text-align:center;
  }
}


.faq-section{
  background:#f7fafb;
  padding:80px 8%;
}

.faq-container{
  max-width:900px;
  margin:auto;
  display:grid;
  gap:15px;
}

.faq-container details{
  background:#fff;
  border-radius:20px;
  padding:22px 25px;
  box-shadow:0 10px 30px #e8eef0;
}

.faq-container summary{
  cursor:pointer;
  color:var(--dark);
  font-family:var(--title-font);
  font-weight:800;
  text-transform:uppercase;
  list-style:none;
}

.faq-container summary::-webkit-details-marker{
  display:none;
}

.faq-container p{
  margin:18px 0 0;
  line-height:1.6;
}

.faq-container summary{
  position:relative;
  padding-right:35px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.faq-container summary::after{
  content:'⌄';
  position:absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  color:#30343b;
  font-weight:bold;
  transition:.3s;
}

.faq-container details[open] summary::after{
  transform:translateY(-50%) rotate(180deg);
}

.service-icon-box{
height:200px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#eaffff,#fffbe5);
border-bottom:2px solid #32D6E8;
}
.service-icon-box img,
.service-icon-box svg{
width:95px;
height:95px;
}

/* Padronização dos ícones dos serviços */
.service-icon-box{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#eaffff,#fffbe5);
    border-bottom:2px solid #32D6E8;
}

.service-icon-box img,
.service-icon-box svg{
    width:120px;
    height:120px;
    object-fit:contain;
    display:block;
}

.service-icon-box{
    padding:20px;
}

/* v14 - ícones 3D padronizados */
.service-icon-box{
 height:220px;
 display:flex;
 align-items:center;
 justify-content:center;
 background:linear-gradient(135deg,#ffffff,#f9f6df);
 border-bottom:2px solid #32D6E8;
}
.service-icon-box img,
.service-icon-box svg{
 width:130px;
 height:130px;
 object-fit:contain;
}

.contact-section{
padding:70px 8%;
background:#f7fafb;
text-align:center;
}
.contact-box{
background:white;
max-width:600px;
margin:auto;
padding:30px;
border-radius:22px;
box-shadow:0 10px 30px #e8eef0;
color:#444;
}
.contact-box p{
font-size:18px;
}
