body{
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background: #fdfcfb;
    color: #333;
}

header{

    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0,0,0, 0.3)), url('img/fundo.jpg') no-repeat center/cover;
    background-image: url(../img/fundo.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 120px 20px;
}

header h1{
    font-size: 3.5rem;
    margin: 0;
    font-family: 'Cursive';
}
header p{
    font-size: 1.4rem;
    margin-top: 10px;
}

section{
    padding: 20px 60px;
    max-width: 900px;
    margin: auto;
}

h2{
    font-size: 2rem;
    color: #a67c52;
    margin-bottom: 20px;
}

.contador{
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 20px;
    color: #ffd7a3;
}

.timeline{
    position: relative;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 3px solid #a67c52;
}
.timeline div{
    margin-bottom: 30px;
    position: relative;
}
.timeline div::before{
    content: '';
    width: 15px;
    height: 15px;
    background: #a67c52;
    border-radius: 50%;
    position: absolute;
    left: -39px;
    top: 5px;
}
.timeline h3{
    margin: 0;
    font-size: 1.2rem;
    color: #a67c52
}
.timeline p{
    margin: 5px 0 0;
    font-size: 1.2rem;
    color: #444;
}


.o-dia{
    background-image: url(../img/fundo.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
}
.o-dia h2{
    color: #ffd7a3;
}

.rsv form{
    max-width: 400px;
    margin: auto;
}
.rsv input,
.rsv button{
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
.rsv button{
    background: #a67c52;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.rsv button:hover{
    background: #8d6543;
}

footer{
    background: #333;
    color: white;
    padding: 20px;
    font-size: 0.9rem;
}
footer p small{
    font-size: 0.6rem;
}