* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== FUNDO ===== */
body {
  background: #f4f6f8;
}

/* ===== CAPA ===== */
.cover{
  height:360px;
  background-image:url("assets/irmas.jpeg");
  background-size:cover;
  background-position:center 30%;
  position:relative;
  overflow:hidden;
}


/* Gradiente de transição */
.cover::after{
  content:"";
  position:absolute;
  inset:0;
  
}

.cover .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}

/* ===== BACK ===== */
.page-bg {
  min-height: 100vh;
  background-image: url("assets/fundo.png");
  background-size: cover;
  background-position: center;
}

/* ===== CONTAINER ===== */
.container{
  max-width:420px;
  margin:-90px auto 0;
  padding:0 20px 30px;
}


/* ===== PERFIL ===== */
.profile {
  background: #e4c6a0;
  border-radius: 16px;
  padding: 70px 20px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.profile img {
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  border:5px solid #fff;
  position:absolute;
  top:-55px;
  left:50%;
  transform:translateX(-50%);
}
.profile h1 { font-size:22px; }
.profile p { font-size:14px;color:#666;margin-top:6px; }

/* ================== CARDS ================== */
.cards {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  height: 150px;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  transition: .3s;
}
.card:hover { transform: scale(1.02); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.card h2 {
  color:#fff;
  font-size:20px;
  max-width:70%;
  line-height:1.2;
}

.card span {
  margin-top: 12px;
  background:#7a3c00;
  color:#fff;
  width:max-content;
  padding:8px 18px;
  border-radius:22px;
  font-size:13px;
}

/* IMAGENS DOS CARDS */
.card-encontro { background-image:url("assets/encontro.jpeg"); }
.card-oracao   { background-image:url("assets/irmas.jpeg"); }
.card-youtube  { background-image:url("assets/irmas.jpeg"); }
.card-tiktok   { background-image:url("assets/tiktok.jpeg"); }
.card-pix      { background-image:url("assets/pixfundo.jpeg"); }

/* ===== PIX ===== */
.pix { display:flex; justify-content:center; margin-top:20px; }

.Texto-Pix {
  display:flex;
  justify-content:center;
  margin-top:20px;
}
.Texto-Pix p{
  border:2px solid #000;
  padding:12px 24px;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  background:#eab775;
}

/* ===== VIDEO ===== */
.video-box { margin:20px 0; }
.video-box video {
  width:100%;
  border-radius:14px;
}

/* ===== MAPAS ===== */
.map-section { margin-top:30px; }
.map-box {
  background:#fff;
  padding:15px;
  border-radius:16px;
  margin-bottom:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.map { width:100%; height:250px; border-radius:12px; }

/* ===== RODAPÉ ===== */
footer {
  text-align:center;
  margin-top:25px;
  font-size:12px;
  color:#888;
}

/* ===== RESPONSIVO ===== */
@media (max-width:767px){
  .pix img{max-width:350px;}
}
@media (min-width:768px){
  .pix img{max-width:430px;}
  .container{max-width:480px;}
}


/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:32px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  z-index:999999 !important;
}




/* MODAL */
.zap-fixo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  max-width:340px;
  margin:15px auto;
  background:#25D366;
  color:#fff;
  padding:14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 5px 15px rgba(0,0,0,.25);
  transition:.25s;
}

.zap-fixo i{
  font-size:22px;
}

.zap-fixo:hover{
  transform:scale(1.03);
  background:#1ebe5d;
}
@keyframes pulseZap {
  0%   { transform:scale(1); box-shadow:0 0 0 rgba(37,211,102,.7); }
  50%  { transform:scale(1.08); box-shadow:0 0 25px rgba(37,211,102,.9); }
  100% { transform:scale(1); box-shadow:0 0 0 rgba(37,211,102,.7); }
}

.whatsapp-float{
  animation: pulseZap 1.2s ease-in-out infinite;
}
.whatsapp-float{
  animation: pulseZap 1.2s ease-in-out infinite;
  animation-delay:3s;
}

