---- style.css


:root{

--piugene-blue:#01a9df;
--piugene-dark:#1f2937;
--piugene-gray:#6b7280;
--piugene-light:#f8fafc;
--white:#ffffff;

--shadow:0 15px 40px rgba(0,0,0,.08);

}

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Montserrat',sans-serif;
background:#ffffff;
color:var(--piugene-dark);
line-height:1.7;
overflow-x:hidden;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* HEADER */

header{

position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,.95);
backdrop-filter:blur(12px);
z-index:9999;
box-shadow:0 2px 12px rgba(0,0,0,.04);

}

.header-container{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo img{

height:55px;

}

nav{

display:flex;
gap:30px;

}

nav a{

text-decoration:none;
font-weight:600;
font-size:.95rem;
color:var(--piugene-dark);
transition:.3s;

}

nav a:hover{

color:var(--piugene-blue);

}

/* HERO */

.hero{

min-height:100vh;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
background:
linear-gradient(
135deg,
#ffffff 0%,
#f7fbfd 50%,
#eef8fc 100%
);

}

.hero::before{

content:"";

position:absolute;

width:800px;
height:800px;

right:-250px;
top:-150px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(1,169,223,.12),
transparent 70%
);

}

.hero-container{

display:flex;
align-items:center;
justify-content:space-between;
gap:60px;

}

.hero-content{

flex:1;

}

.hero-tag{

display:inline-block;
padding:10px 18px;
border-radius:30px;

background:#e6f7fd;

color:var(--piugene-blue);

font-size:.8rem;
font-weight:700;

margin-bottom:25px;

}

.hero h1{

font-size:4rem;
line-height:1.1;
margin-bottom:25px;

max-width:650px;

}

.hero p{

font-size:1.15rem;
color:var(--piugene-gray);
max-width:600px;

margin-bottom:35px;

}

.hero-image{

flex:1;
text-align:center;

}

.hero-image img{

max-width:100%;
width:420px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}

}

.hero-buttons{

display:flex;
gap:20px;

}

.btn-primary{

background:var(--piugene-blue);
color:white;

padding:16px 32px;

border-radius:40px;

text-decoration:none;
font-weight:700;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-secondary{

border:2px solid var(--piugene-blue);

padding:16px 32px;

border-radius:40px;

text-decoration:none;
font-weight:700;

color:var(--piugene-blue);

}

/* SEÇÕES */

.section{

padding:110px 0;

}

.gray-bg{

background:#f7fafc;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

display:block;

color:var(--piugene-blue);

font-weight:700;
letter-spacing:2px;

margin-bottom:15px;

}

.section-title h2{

font-size:2.7rem;

margin-bottom:20px;

}

.section-title p{

max-width:700px;
margin:auto;
color:var(--piugene-gray);

}

/* TECNOLOGIA */

.tech-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.tech-card{

background:white;

padding:35px;

border-radius:25px;

box-shadow:var(--shadow);

transition:.3s;

}

.tech-card:hover{

transform:translateY(-8px);

}

.tech-card h3{

margin-bottom:15px;

}

/* PRODUTOS */

.products-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:35px;

}

.product-card{

background:white;

border-radius:30px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.3s;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

width:100%;
padding:30px;

}

.product-card h3{

padding:0 25px;

margin-bottom:10px;

}

.product-card p{

padding:0 25px 30px;

color:var(--piugene-gray);

}

/* MÁSCARA */

.mask-highlight{

padding:120px 0;

}

.mask-container{

display:flex;
align-items:center;
gap:70px;

}

.mask-image{

flex:1;

}

.mask-image img{

width:100%;
border-radius:30px;

box-shadow:var(--shadow);

}

.mask-content{

flex:1;

}

.mask-content span{

color:var(--piugene-blue);
font-weight:700;

}

.mask-content h2{

font-size:3rem;
margin:15px 0 25px;

}

.mask-content ul{

margin-top:25px;
margin-left:20px;

}

.mask-content li{

margin-bottom:10px;

}

/* PRODUTO ÚNICO */

.single-product{

max-width:450px;
margin:auto;
text-align:center;

}

.single-product img{

width:280px;
margin-bottom:25px;

}

/* SCIENCE */

.science-section{

background:
linear-gradient(
135deg,
#01a9df,
#0095c7
);

color:white;

padding:120px 0;

}

.light h2,
.light span{

color:white;

}

.science-text{

max-width:900px;
margin:auto;
text-align:center;

}

.science-text p{

margin-bottom:25px;
font-size:1.1rem;

}

/* ABOUT */

.about-content{

max-width:900px;
margin:auto;
text-align:center;

font-size:1.1rem;

}

.about-content p{

margin-bottom:20px;

}

/* CONTATO */

.contact-section{

background:#f8fafc;
padding:110px 0;

text-align:center;

}

.contact-section h2{

margin-bottom:50px;
font-size:2.5rem;

}

.contact-grid{

display:grid;
grid-template-columns:repeat(3,1fr);

gap:30px;

}

.contact-grid h3{

margin-bottom:10px;

}

.contact-grid a{

color:var(--piugene-blue);
text-decoration:none;

}

/* FOOTER */

footer{

background:#0f172a;
color:white;

padding:60px 0;

text-align:center;

}

.footer-content img{

height:70px;
margin-bottom:20px;

}

/* WHATSAPP */

.whatsapp-button{

position:fixed;

right:25px;
bottom:25px;

background:#25d366;

color:white;

text-decoration:none;

padding:18px 22px;

border-radius:50px;

font-weight:700;

box-shadow:
0 10px 25px rgba(37,211,102,.35);

z-index:99999;

}

/* RESPONSIVO */

@media(max-width:991px){

.hero-container,
.mask-container{

flex-direction:column;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:2.7rem;

}

.tech-grid{

grid-template-columns:1fr 1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

nav{

display:none;

}

}

@media(max-width:600px){

.tech-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:2rem;

}

.hero h1{

font-size:2.2rem;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

text-align:center;

}

}

/* ANIMAÇÕES */

.hidden{

opacity:0;
transform:translateY(30px);
transition:all .8s ease;

}

.show{

opacity:1;
transform:translateY(0);

}

