/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-size: 400px;
    opacity: 0.1;
    z-index: -1;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 350px;
    height: auto;
}

/* Títulos e textos */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d68c2c;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d68c2c;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contador */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    background-color: #d68c2c;
    color: white;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(214, 140, 44, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #666;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background-color: #f9f3e6;
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    position: relative;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-image: url('images/pattern.png');
    background-size: 100px;
    background-position: -20px -20px;
    border-radius: 50%;
    opacity: 0.8;
}

.newsletter::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-image: url('images/pattern.png');
    background-size: 100px;
    background-position: -50px -50px;
    border-radius: 50%;
    opacity: 0.8;
}

#newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #d68c2c;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

#newsletter-form input:focus {
    border-color: #b06d1a;
    box-shadow: 0 0 0 2px rgba(214, 140, 44, 0.2);
}

#newsletter-form button {
    background-color: #d68c2c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#newsletter-form button:hover {
    background-color: #b06d1a;
}

/* Redes sociais */
.social-media {
    margin-top: 2.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    color: #d68c2c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #b06d1a;
}

/* Responsividade */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .social-icons {
        flex-direction: column;
        gap: 1rem;
    }
}
.form-message {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  display: none;
  padding: 10px;
  border-radius: 8px;
}

.form-message.success {
  color: #2e7d32;
  background-color: #e6f4ea;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  color: #c62828;
  background-color: #fdecea;
  border: 1px solid #ef9a9a;
}
/* Ajustes para reduzir o espaço entre logo e título */
.logo-container {
    margin-bottom: 1rem; /* Reduzido de 2rem para 1rem */
}

h1 {
    margin-top: 0.5rem; /* Evita espaço excessivo acima do título */
}


