
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Poppins',sans-serif;background:#fff;color:#1f2937}
.container{max-width:1400px;margin:auto;padding:20px}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:
linear-gradient(to bottom,rgba(255,255,255,0) 60%,#fff 100%),
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url('foto-casal.jpg') center/cover;
animation:zoom 12s infinite alternate ease-in-out;
}

@keyframes zoom{
from{transform:scale(1)}
to{transform:scale(1.08)}
}

.hero-content{
position:relative;
z-index:2;
color:#fff;
padding:20px;
animation:fade 1.2s ease;
}

@keyframes fade{
from{opacity:0;transform:translateY(40px)}
to{opacity:1;transform:translateY(0)}
}

.hero h1{
font-size:5rem;
font-family:'Cormorant Garamond',serif;
}

.hero p{margin-top:20px;font-size:1.1rem;line-height:1.8}

.convite{
max-width:850px;
margin:-120px auto 70px;
position:relative;
z-index:5;
}

.convite img{
width:100%;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.form-confirmacao{
max-width:700px;
margin:40px auto 70px;
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
text-align:center;
}

.form-confirmacao h2{
font-size:3rem;
font-family:'Cormorant Garamond',serif;
margin-bottom:10px;
}

input{
width:100%;
padding:16px;
border-radius:16px;
border:1px solid #d1d5db;
margin-bottom:15px;
}

button{
border:none;
padding:14px 18px;
border-radius:16px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

button:hover{transform:translateY(-2px)}

.btn{background:#111827;color:#fff}
.ml{background:#ffe600;color:#000;flex:1}
.shopee{background:#ee4d2d;color:#fff;flex:1}
.editar{background:#2563eb;color:#fff}
.excluir{background:#dc2626;color:#fff}

.grid-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.produto-card{
background:#fff;
border-radius:28px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.produto-card img{
width:100%;
height:260px;
object-fit:cover;
}

.produto-content{padding:25px}
.botoes{display:flex;gap:10px;margin-top:20px}

.hidden{display:none}

.card{
background:#fff;
padding:25px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.linhas{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

th{
background:#111827;
color:#fff;
padding:14px;
text-align:left;
}

td{
padding:14px;
border-bottom:1px solid #e5e7eb;
}

.popup{
position:fixed;
inset:0;
background:rgba(0,0,0,.5);
display:none;
justify-content:center;
align-items:center;
z-index:999;
padding:20px;
}

.popup-box{
background:#fff;
padding:30px;
border-radius:24px;
width:100%;
max-width:550px;
}

.thumb{
width:60px;
height:60px;
object-fit:cover;
border-radius:12px;
}

.topo{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
flex-wrap:wrap;
gap:10px;
}

@media(max-width:900px){
.hero h1{font-size:3rem}
.linhas{grid-template-columns:1fr}
}

@media(max-width:600px){
.grid-cards{grid-template-columns:1fr}
.hero{height:85vh}
.hero h1{font-size:2.3rem}
.botoes{flex-direction:column}
}
