/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: #f0e9df; /* Cor de fallback */
    background-image: url('../images/pexels-pixabay-534174.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

/* Header and Logo */
header {
    padding: 40px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 5px;
    text-align: center;
    font-size: 2em;
    color: #333;
}

.logo span {
    font-weight: 700;
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    min-height: 75vh;
    margin-top: 20px; /* Ajustado para centralizar melhor verticalmente */
}

.content {
    text-align: center;
    max-width: 700px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    margin-bottom: 30px;
    letter-spacing: 8px;
    font-weight: 400;
    color: #988866;
}

p {
    margin-bottom: 16px;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.notify-container {
    margin-top: 40px;
}

.notify-btn {
    background-color: #988866;
    color: #fff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.notify-btn:hover {
    background-color: #7a6b51;
}

.email-info {
    border: 1px solid #988866;
    display: inline-block;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.email-text {
    font-size: 1.1em;
    color: #988866;
    letter-spacing: 1px;
    margin: 0;
}

/* Footer styles */
footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #666;
    position: fixed;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo h2 {
        font-size: 1.8em;
    }
    
    h1 {
        font-size: 2.8em;
        letter-spacing: 5px;
    }
    
    .content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
        letter-spacing: 3px;
    }
    
    p {
        font-size: 0.9em;
    }
    
    .notify-btn {
        padding: 12px 25px;
        font-size: 0.8em;
    }
    
    .content {
        padding: 25px 15px;
    }
}