/* Pintor Anderson Floripa - style.css
   Mobile First - EDsoft Studio */

:root{
 --primary:#2563eb;
 --dark:#111827;
 --light:#f8fafc;
 --white:#fff;
 --success:#22c55e;
 --text:#334155;
 --radius:18px;
 --shadow:0 10px 25px rgba(0,0,0,.08);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',Arial,sans-serif;background:var(--light);color:var(--text);line-height:1.6}
img{display:block;max-width:100%;height:auto}
.container{width:min(92%,1200px);margin:auto}

/* HEADER */
.site-header{position:fixed;top:0;width:100%;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.08);z-index:999}
.header-content{display:flex;flex-direction:column;gap:14px;padding:14px 0}
.logo{font-weight:800;font-size:1.3rem;color:var(--primary);text-align:center}
.main-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:14px}
.main-nav a{text-decoration:none;color:var(--dark);font-weight:600;transition:.3s}
.main-nav a:hover{color:var(--primary)}

/* HERO */
.hero{
padding:170px 0 100px;
background:
linear-gradient(rgba(9,18,32,.88),rgba(9,18,32,.88)),
linear-gradient(135deg,#0b1120,#111827,#1e3a8a);
color:#fff;
text-align:center;
}
.hero-logo{
max-width:360px;
background:#fff;
padding:18px;
border-radius:22px;
box-shadow:0 15px 35px rgba(0,0,0,.30);
margin:0 auto 35px;
}
.hero h1{font-size:2.2rem;margin-bottom:18px}
.hero p{max-width:760px;margin:auto auto 30px;color:#dbeafe}
.btn-primary-custom,.btn-whatsapp{
display:inline-block;
padding:15px 28px;
border-radius:14px;
text-decoration:none;
font-weight:700;
transition:.3s;
}
.btn-primary-custom{background:var(--primary);color:#fff}
.btn-whatsapp{background:var(--success);color:#fff}
.btn-primary-custom:hover,.btn-whatsapp:hover{transform:translateY(-3px);filter:brightness(1.05)}

/* SECTIONS */
section{padding:80px 0;animation:fade .7s ease}
#pinturas{
background:#ffffff;
}
#servicos-gerais{
background:#f3f4f6;
}
#vantagens{
background:#111827;
color:#fff;
}
#vantagens h2{
color:#fff;
}
#avaliacoes{
background:#ffffff;
}
#contato{
background:#0b1120;
color:#fff;
}
section h2{text-align:center;color:var(--dark);margin-bottom:20px}
.section-text{max-width:820px;margin:auto;text-align:center}

/* GALLERY */
.gallery-grid{margin-top:40px}
.gallery-grid figure{
background:#ffffff;
border:3px solid #2563eb;
border-top:8px solid #2563eb;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.12);
height:100%;
}
.gallery-img{
width:100%;
height:220px;
object-fit:contain;
object-position:center;
background:#ffffff;
padding:12px;
border-bottom:3px solid #2563eb;
}
.gallery-grid figcaption{
background:linear-gradient(135deg,#2563eb,#1d4ed8);
color:#ffffff;
font-weight:700;
font-size:.95rem;
text-align:center;
padding:16px 12px;
min-height:70px;
display:flex;
align-items:center;
justify-content:center;
line-height:1.4;
}

/* SERVICES */
.services-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:30px;
}
.service-card{
background:#fff;
padding:30px;
border-radius:18px;
border-left:5px solid #2563eb;
box-shadow:0 8px 18px rgba(0,0,0,.08);
}
.service-card:hover{transform:translateY(-6px)}
.service-card h3{color:var(--primary);margin-bottom:12px}

/* ADVANTAGES */

#vantagens{
background:#111827;
color:#ffffff;
}

#vantagens h2{
color:#ffffff;
margin-bottom:45px;
}

.advantages{
display:grid;
gap:20px;
grid-template-columns:1fr;
}

.advantage{
background:#1f2937;
border:1px solid #334155;
color:#ffffff;
padding:22px;
border-radius:18px;
box-shadow:0 8px 20px rgba(0,0,0,.20);
font-weight:600;
}
/* CARDS */
.card{
border:none!important;
border-radius:18px!important;
box-shadow:var(--shadow);
transition:.3s
}
/*AVALIAÇÕES*/

#avaliacoes .card{
background:#ffffff;
border:2px solid #2563eb !important;
border-radius:18px;
box-shadow:0 8px 18px rgba(0,0,0,.08);
padding:20px;
height:100%;
}

#avaliacoes .card p{
color:#334155;
font-style:italic;
margin-bottom:20px;
}

#avaliacoes .card strong{
color:#2563eb;
font-size:.95rem;
display:block;
margin-top:auto;
}

#avaliacoes .mb-2{
font-size:1.2rem;
}


/* CONTACT */
#contato{
background:var(--dark)!important;
color:#fff;
text-align:center
}

/* FOOTER */
footer{
background:#0b1120;
color:#fff;
padding:30px 0;
text-align:center
}
footer img{margin:15px auto 0}

/* ANIMATION */
@keyframes fade{
from{opacity:0;transform:translateY(35px)}
to{opacity:1;transform:translateY(0)}
}

/* TABLET */
@media(min-width:768px){
.header-content{flex-direction:row;justify-content:space-between;align-items:center}
.logo{text-align:left}
.hero h1{font-size:3.3rem}
.hero p{font-size:1.15rem}
.services-grid{grid-template-columns:repeat(3,1fr)}
.advantages{grid-template-columns:repeat(2,1fr)}
.gallery-img{height:240px}
}

/* DESKTOP */
@media(min-width:1200px){
.hero{padding:190px 0 120px}
.hero h1{font-size:4rem}
.gallery-img{height:280px;}
}
