
/* Site List/a de Presentes */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

/*test
body{
  font-family:'Poppins', sans-serif;
  background:#fffaf8;
  color:#333;
} */

body{ 
  font-family:Arial; background:#f4f4f4; padding:40px; }

/*.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('img/casa01.png');
  background-size:cover;
  background-position:center;
  color:white;
}*/

.navbar{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(6px);
}

.logo{
  font-family:'Playfair Display', serif;
  font-size:28px;
  font-weight:bold;
}

.menu{
  display:flex;
  gap:25px;
  list-style:none;
}

.menu a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.menu a:hover{
  color:#f7d6d0;
}

.menu-mobile{
  display:none;
  font-size:28px;
  cursor:pointer;
}

.hero-content{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:72px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:20px;
}

.date{
  font-size:22px;
  margin-bottom:30px;
}

.btn{
  background:#6b8e23;
  color:white;
  padding:14px 28px;
  text-decoration:none;
  border-radius:30px;
  transition:0.3s;
}

.btn:hover{
  background:#6b8e23;
}

.section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  font-size:42px;
  margin-bottom:50px;
  font-family:'Playfair Display', serif;
  color:#6b8e23;
}

.couple-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
}

.card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  text-align:center;
  padding-bottom:30px;
}

.card img{
  width:100%;
  height:350px;
  object-fit:cover;
}

.card h3{
  margin:20px 0 10px;
  font-size:28px;
  color:#6b8e23;
}

.card p{
  padding:0 20px;
  line-height:1.7;
}

.info-section{
  background:#fff1ef;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:25px;
}

.info-box{
  background:white;
  padding:30px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.info-box h3{
  margin-bottom:15px;
  color:#6b8e23;
}

.gift-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:25px;
}

.gift-card{
  background:white;
  padding:30px;
  border-radius:18px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  text-align:center;
}

.gift-card h3{
  margin-bottom:15px;
  color:#6b8e23;
}

.gift-price{
  font-size:22px;
  font-weight:600;
  margin-bottom:25px;
}

.gift-buttons{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.btn-small{
  background:#d9a5a0;
  color:white;
  padding:10px 18px;
  border-radius:25px;
  text-decoration:none;
  transition:0.3s;
}

.btn-small:hover{
  background:#c28b86;
}

.secondary{
  background:#444;
}

.secondary:hover{
  background:#222;
}

.footer{
  background:#b46d67;
  color:white;
  text-align:center;
  padding:40px 20px;
}

.footer h2{
  margin-bottom:10px;
  font-family:'Playfair Display', serif;
}


.placeholder{
    color:#6b8e23;
    font-weight:bold;
    font-size:1rem;
}

.presente{
    background:#f7f9f2;
    border:2px solid #6b8e23;
    border-radius:15px;
    padding:20px;
}

.presente h2{
    color:#556b2f;
    margin-bottom:15px;
}

.valor{
    font-size:1.3rem;
    font-weight:bold;
    color:#333;
    margin-bottom:18px;
}

.botoes{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.btn{
    text-decoration:none;
    background:#6b8e23;
    color:white;
    padding:15px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
    border:none;
    cursor:pointer;
    font-size:1rem;
}

.btn:hover{
    background:#556b2f;
    transform:scale(1.03);
}

.btn-secundario{
    background:white;
    color:#6b8e23;
    border:2px solid #6b8e23;
}

.btn-secundario:hover{
    background:#6b8e23;
    color:white;
}

@media (max-width:480px){



  .menu{
    display:none;
    position:absolute;
    top:80px;
    right:20px;
    background:white;
    flex-direction:column;
    width:220px;
    border-radius:12px;
    padding:20px;
  }

  .menu.active{
    display:flex;
  }

  .menu a{
    color:#333;
  }

  .menu-mobile{
    display:block;
  }

  .hero-content h1{
    font-size:48px;
  }

  .section-title{
    font-size:34px;
  }

/* ADICIONE no final do style.css */

.gift-total{
  font-size:20px;
  margin:20px 0;
  color:#444;
}

.subtitle{
  margin-bottom:15px;
  color:#b46d67;
}

.cotas{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
  margin-bottom:20px;
  align-items: center;
}

.cota-btn{
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center;
  background:#d9a5a0;
  color:white;
  text-decoration:none;
  padding:12px;
  border-radius:12px;
  font-weight:600;
  transition:0.3s;
}
.cota-btn:hover{
  background:#c28580;
  transform:translateY(-2px);
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center;
}

.payment-info{
  margin:15px 0 20px;
  color:#777;
  font-size:14px;
}

.presentear-btn{
  display:block;
  width:100%;
  background:#4b4b4b;
  color:white;
  text-decoration:none;
  padding:14px;
  border-radius:12px;
  font-weight:600;
  transition:0.3s;
}

.presentear-btn:hover{
  background:#222;
}


.imagem {
    width: 100px;
    height: 50px;

}

.presente{
    background:#f7f9f2;
    border:2px solid #6b8e23;
    border-radius:15px;
    padding:20px;
}

.presente h2{
    color:#556b2f;
    margin-bottom:15px;
}

.valor{
    font-size:1.2rem;
    font-weight:bold;
    color:#333;
    margin-bottom:18px;
}

.botoes{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items: center;
}

 .titulo{
        font-size:1.7rem;
    }

    .btn{
        font-size:0.95rem;
        padding:14px;
    }

    .imagem-presente{
        height:190px;
    }

.gift-card{

    width:100px;
    padding:20px;
    border-radius:12px;
    background:white;
    box-shadow:0 0 10px rgba(0,0,0,0.1);

    margin-bottom:30px;
}

.valor-total{

    font-size:18px;
    font-weight:bold;
    margin-top:10px;
}

.progresso-container{

    width:100%;
    height:20px;
    background:#ddd;
    border-radius:10px;
    margin-top:15px;
    overflow:hidden;
}

.progresso-barra{
    height:100%;
    width:0%;
    background:#00b894;
    transition:0.3s;
}

.progresso-texto{
    margin-top:8px;
    font-size:14px;
}

.botoes{

    display:flex;
    gap:10px;

    margin-top:20px;
}

.btn{

    border:none;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
    background:#9dbe59;
    color:white;
    align-items: center;
    

}

.btn-secundario{
   /*
    background:#6b8e23;
    text-decoration:none;
    display:flex;
    align-items:center;*/
    border:none;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
    background:#222c0d;
    color:white;
    align-items: center;
}

.btn-desativado{

    background:gray;
    cursor:not-allowed;
}

.status{

    margin-top:15px;
    font-weight:bold;
}

.gift-card{ width:320px; background:white; padding:20px; border-radius:12px; box-shadow:0 0 10px rgba(0,0,0,0.1); } 
.valor-total{ margin-top:10px; font-weight:bold; } 
/* CONTAINER DA BARRA */ 
.progresso-container{ width:100%; height:25px; background:#dcdde1; border-radius:30px; overflow:hidden; margin-top:20px; } 
/* BARRA VERDE */ 
.progresso-barra{ width:0%; height:100%; background:#00b894; transition:width 0.5s ease; } 
/* TEXO */ 
.progresso-texto{ margin-top:10px; font-size:14px; } 
.botoes{ display:flex; gap:10px; margin-top:20px; } .btn{ border:none; padding:10px 15px; border-radius:8px; cursor:pointer; background:#009ee3; color:white; } 
.btn-secundario{ background:#6b8e23; text-decoration:none; } 
.btn-desativado{ background:gray; cursor:not-allowed; } 
.status{ margin-top:15px; font-weight:bold; }


/* ==========================
   RESPONSIVIDADE GERAL
========================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

.section{
    padding:60px 20px;
}

.hero-content{
    width:90%;
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.hero-content h1{
    font-size:clamp(2.5rem,8vw,6rem);
}

.hero-content p{
    font-size:clamp(1rem,2vw,1.3rem);
}

.date{
    font-size:clamp(1rem,2vw,1.3rem);
}

/* ==========================
   MENU
========================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 5%;
    flex-wrap:wrap;
}

.menu{
    display:flex;
    gap:25px;
    list-style:none;
}

.menu a{
    text-decoration:none;
}

/* ==========================
   NOIVOS
========================== */

.couple-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.card{
    width:100%;
}

.card img{
    width:100%;
    max-width:200px;
    margin:auto;
    border-radius:15px;
}

/* ==========================
   INFORMAÇÕES
========================== */

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.info-box{
    width:100%;
}

/* ==========================
   LISTA DE PRESENTES
========================== */

.gift-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    max-width:1400px;
    margin:auto;
}

.gift-card{
    width:100%;
    padding:50px;
}

.gift-card img{
    width:auto;
    max-width:50%;
    height:auto;
    margin:auto;
}

.botoes{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.btn{
    width:100%;
    text-align:center;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px){

    .info-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .couple-container{
        grid-template-columns:1fr;
    }

}

/* ==========================
   CELULAR
========================== */

@media (max-width:768px){

    .menu{
        display:none;
    }

    .menu-mobile{
        display:block;
        font-size:30px;
        cursor:pointer;
    }

    .hero{
        min-height:100vh;
        background-position:center center;
    }

    .hero-content{
        padding:20px;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .gift-container{
        grid-template-columns:1fr;
    }

    .gift-card{
        max-width:450px;
        margin:auto;
    }

}

/* ==========================
   CELULARES PEQUENOS
========================== */

@media (max-width:480px){

    .hero-content h1{
        font-size:2.5rem;
    }

    .navbar{
        padding:15px;
    }

    .gift-card{
        padding:15px;
    }

}

/* ==========================
   ÁLBUM DOS NOIVOS
========================== */

.mosaico-noivos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    max-width:1000px;
    margin:40px auto;
    padding:0 20px;
}

.mosaico-noivos img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    transition:opacity 1s ease;
}

@media(max-width:768px){

    .mosaico-noivos{
        grid-template-columns:1fr;
    }

    .mosaico-noivos img{
        height:250px;
    }

}

}
.menu-mobile-oliva {
  display: flex;
  background-color: #556B2F; /* Verde Oliva Escuro */
  position: fixed;
  bottom: 0;                 /* Fixa o menu na parte inferior da tela (estilo App) */
  left: 0;
  width: 100%;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 0;
}

.menu-mobile-oliva a {
  flex: 1;                   /* Divide o espaço em 4 partes exatamente iguais */
  text-align: center;
  color: #f5f6fa;            /* Texto quase branco para dar leitura */
  text-decoration: none;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

/* Efeito ao tocar ou passar o mouse */
.menu-mobile-oliva a:hover {
  background-color: #6B8E23; /* Verde Oliva Claro */
}

/* Item ativo (onde o usuário está no momento) */
.menu-mobile-oliva a.active {
  background-color: #b2f152; /* Verde Oliva bem escuro para destaque */
  color: #fff;
  border-top: 3px solid #a3b86c; /* Detalhe em verde claro no topo do botão ativo */
}
  

