
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0b1726; }
img { display: block; max-width: 100%; height: auto; }

.container { width: min(1100px, 92%); margin: 0 auto; }

header.topo { position: sticky; top: 0; z-index: 50; background: white; border-bottom: 1px solid #e5e7eb; }
header.topo .container { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; font-weight: 700; }
.brand img { width: 120px; height: auto; }
header nav a { margin-left: 16px; color: #0b1726; text-decoration: none; font-weight: 500; }
header nav a:hover { color: #0ea5e9; }

.hero { background: linear-gradient(180deg, #e0f2fe, #ffffff); padding: 80px 20px; text-align: center; }
.hero h1 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 10px 0; }
.hero p { margin: 0 auto 20px auto; max-width: 700px; color: #334155; }
.btn { display: inline-block; background: #0ea5e9; color: #fff; padding: 12px 20px; border-radius: 999px; text-decoration: none; font-weight: 700; }
.btn:hover { filter: brightness(0.95); }

.galeria { padding: 40px 20px; text-align: center; }
.galeria h2 { margin-top: 0; }
.galeria .sub { color: #475569; margin-bottom: 20px; }

.carousel { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.slides { display: flex; transition: transform 0.5s ease-in-out; }
.slides img { width: 100%; flex-shrink: 0; }
.prev, .next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 10px; cursor: pointer; border-radius: 50%; }
.prev { left: 15px; } .next { right: 15px; }
.prev:hover, .next:hover { background: rgba(0,0,0,0.8); }

.sobre { padding: 40px 20px; background: #f8fafc; }
.sobre .lista { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px 20px; }
.sobre .lista li { list-style: none; background: #fff; padding: 14px 16px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

.depoimentos { text-align: center; padding: 40px 20px; background: #f5f5f5; }
.carousel-depo { position: relative; max-width: 700px; margin: 0 auto; overflow: hidden; }
.slides-depo { display: flex; transition: transform 0.5s ease-in-out; }
.card { min-width: 100%; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); border-radius: 12px; background: white; }
.card img { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 10px auto; object-fit: cover; }
.prev-depo, .next-depo { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 8px; cursor: pointer; border-radius: 50%; }
.prev-depo { left: 15px; } .next-depo { right: 15px; }

.contato { padding: 40px 20px; text-align: center; }
.contato .tel { color: #334155; }

.rodape { background: #0b1726; color: #cbd5e1; padding: 20px 0; text-align: center; }
