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

html,body{
    background:
    url(mariambg.png),
    linear-gradient(to bottom, #ffffff, #FDB777,#FDA766,#FD9346);
  background-repeat: no-repeat;
  background-size:contain;

}

/* ===== BODY ===== */
body {
  background-color: #ffe8d6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Libre Baskerville', serif;
 
}

/* ===== HEADER ===== */
header {
  position:relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:left;
  width: 100%;
  padding: 1px 1px;
  gap:20%;
  border-bottom: 2px solid orange;

}


.logotipo {
  width: 120px;
  height: auto;
}

/* ===== LINKS ===== */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.links a {
  text-decoration: none;
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: orangered;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
  text-align: center;
  align-content: center;
}

.links a:hover {
  background-color: #ffd49f;
}

/* ===== MAIN ===== */
main {
  border: 1px solid orange;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  display: flex;
    flex-direction: row;
}

.amor-banner{
    display: flex;
    flex-direction: column;
}

.short-time{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 50%;
    gap:10px;
}

.cravado1{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 50%;
    gap:10px;   
    
}

.short-time h2{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic; 
}

.short-time h3{
    font-family: 'Playfair Display', serif;
    font-weight: 600;

}

.short-time img{
    width: 20%;
    height: auto;
    display: inline-block;
    border: 3px solid gold;
}

.cravado1 h2{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic; 
}

.cravado1 h3{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.cravado1 img{
    width: 20%;
    height: auto;
    display: inline-block;
    border: 3px solid gold;
}
.cravado1 a{
    background-color: white;
    padding: 5px 10px;
    border: 4px solid gold ;
    border-style:double;
    font-family: 'Playfair Display', serif;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 150%;
    transition: 0.3s;
}

.cravado1 a:hover{
    transform: scale(1.1);
    background-color: orangered;
}
 .cravado1 p{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
 }

 .short-time a{
    font-family: 'Playfair Display', serif;
 }
 .short-time p{
    font-family: 'Playfair Display', serif;
    font-weight: 600;
 }

 .short-time a{
    margin-top: auto;
    background-color: white;
    padding: 5px 10px;
    border: 4px solid gold ;
    border-style:double;
    font-family: 'Playfair Display', serif;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 150%;
    transition: 0.3s;
}

.short-time a:hover{
    transform: scale(1.1);
    background-color: orangered;
}

/* ===== RESPONSIVO PARA MOBILE ===== */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;

  }
  

  .links {
    flex-direction: row;
    gap: 10px;
    text-align: center;
    flex-wrap: nowrap;
  }

  main {
    flex-direction: column;
    gap: 30px;
    padding: 15px;
    border: none;
  }

  .short-time, .cravado1 {
    width: 100%;
  }

  .short-time img, .cravado1 img {
    width: 60%; /* imagens ficam maiores em mobile */
  }

  .links a {
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .cravado1 a, .short-time a {
    font-size: 120%;
    padding: 5px 15px;
  }
}

form#BancodeDados {
  max-width: 400px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form#BancodeDados input, form#BancodeDados button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form#BancodeDados button {
  background-color: #f60;
  color: white;
  border: none;
  cursor: pointer;
}

form#BancodeDados button:hover {
  background-color: #e55b00;
}


       