html{
  box-sizing:border-box;
}

*, *::before, *::after{
  box-sizing:inherit;
}

body{
  margin:0;
  padding:0;
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  color:#fff;
}

body{color:#fff;line-height:1.6}
a{text-decoration:none}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:10;
    background:rgba(0,0,0,.7);
    padding:6px 0; /* menor */
}


.site-name{
    font-size:18px;
    font-weight:bold;
    color:#fff;
}


.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-area img{
    height:32px;
    width:auto;
}

.container{width:90%;max-width:1100px;margin:auto}
header .container{display:flex;justify-content:space-between;align-items:center}

.site-name{font-size:22px}

.btn{
    background:#25d366;color:#fff;padding:12px 22px;
    border-radius:6px;font-weight:bold
}

section{padding:90px 0}

.hero{
    min-height:100vh;display:flex;align-items:center;text-align:center;
    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('../img/hero-seguranca.webp') center/cover
}
.hero h1{
	font-size:38px;
	margin-bottom:20px;
}
.hero p{font-size:18px;max-width:800px;margin:auto}

.services{
    background:#f4f6f8;color:#333
}
.services h2{text-align:center;margin-bottom:50px;color:#111}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px}
.card{
    background:#fff;border-radius:10px;overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1)
}
.card-img{
    height:160px;
    background-size:cover;
    background-position:center
}
.card-body{padding:20px}
.card-body h3{margin-bottom:10px}

.cta{
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('../img/fundo.webp') center/cover;
    text-align:center
}
.cta h2{font-size:32px;margin-bottom:20px}

.about{background:#111;text-align:center}
.about p{max-width:900px;margin:auto;font-size:17px}

footer{background:#000;text-align:center;padding:15px;font-size:14px}


.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 999;

    display: flex;              /* ✅ ESSENCIAL */
    align-items: center;        /* ✅ */
    justify-content: center;    /* ✅ */

    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    transition: transform .2s ease, box-shadow .2s ease;
    animation: whatsapp-pulse 2.5s infinite;
}


.whatsapp-float svg{
    width: 32px;
    height: 32px;
    fill: #fff; /* garante visibilidade */
}


.whatsapp-float:hover{
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
}



@keyframes whatsapp-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);
    }
}

.whatsapp-float{
    animation: whatsapp-pulse 2.5s infinite;
}
.testimonials{
    background:#f4f6f8;
    padding:80px 0;
    color:#333;
}

.testimonials h2{
    text-align:center;
    margin-bottom:50px;
    color:#111;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
gap:25px;
}

.testimonial{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    font-style:italic;
}

.testimonial strong{
    display:block;
    margin-top:15px;
    font-style:normal;
    color:#000;
}

@keyframes starsFade {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars{
    color:#f5b301;
    font-size:18px;
    margin-bottom:10px;
    animation: starsFade .8s ease forwards;
}

.testimonial:nth-child(1) .stars{
    animation-delay: .1s;
}
.testimonial:nth-child(2) .stars{
    animation-delay: .3s;
}
.testimonial:nth-child(3) .stars{
    animation-delay: .5s;
}

.card-body .btn{
    display:inline-block;
    margin-top:15px;
}

.card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.map-section{
    background:#f4f6f8;
    color:#333;
    padding:80px 0;
    text-align:center;
}

.map-section h2{
    margin-bottom:10px;
    color:#111;
}

.map-section p{
    margin-bottom:30px;
    font-size:16px;
}

.map-container{
    border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.map-section .btn{
    margin-top:20px;
    display:inline-block;
}


@media(max-width:768px){
    .logo-area img{
        height:34px;
    }

    header h1{
        font-size:18px;
    }
}

@media(max-width:768px){
    header .btn{
        padding:10px 14px;
        font-size:14px;
    }
}

@media(max-width:768px){
	.hero h1{font-size:30px}
}



