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

html,
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  color: #222;
  line-height: 1.6;
}

header {
  text-align: center;
  padding-top: 20px;
  width: 100%;
  padding-bottom: 10px;
}

header h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #222;
  margin-bottom: 14px;
}

nav {
  background: #53B376;
  padding: 15px 0;
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 10px 0;
  width: 100%;
}

nav a {
  padding: 20px;
  text-decoration: none;
}

nav a:link {
  color: #fff;
}

nav a:visited {
  color: #fff;
}

nav a:hover {
  color: #EAC27B;
}

nav a:active {
  color: #fff;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

main {
  flex: 1;
  width: 100%;
}

.mafra-info {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  margin: 40px 20px 20px 20px;
}

.mafra-info h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #53B376;
}

.mafra-info p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}


.fotografias{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.fotografias img{
  width: 330px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fotografias img:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
}

iframe{
    margin: auto;
    display: block;
}

div p{
  margin: 5px;
  line-height: 1.6;
}

div p:nth-child(1) {
    color: #EAC27B;
    font-size: 24px;
}

div p:nth-of-type(11) {
    color: #7f8c8d;
    font-size: 12px;
}

.nav-buttons{
   display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.menu-botoes a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #53B376;
    border-radius: 12px;
    background-color: #53B376;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.menu-botoes a:hover {
    background-color: #EAC27B;
    color: #592D27;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

#fotografias{
  color: #fff;
  margin-bottom: 20px;
}

.pics{
  height: 100vh;
  background: #A8E6A3;
}

#video{
  color: #fff;
  margin-top: 40px;
}

.video{
  background: #2E7D56;
  height: 100vh;
}

#poema{
  color: #fff;
  margin-top: 40px;
}

.poem{
  background: #4CAF7C;
  height: 100vh;
}

.emblematic {
    position: relative; 
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.emblematic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emblematic-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 5vw;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

footer {
    text-align: center;
    padding: 15px;
    color: #fff;
    background: #53B376;
    width: 100%;
}