/* Estilos Globais */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #c0c0c0;
    --font-primary: Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: normal;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3 {
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button, .button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover, .button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 1rem;
}

/* Barra de Anúncio */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.gif-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background-gif {
    width: 105%;
    height: 105%;
    object-fit: cover;
    position: absolute;
    top: -2.5%;
    left: -2.5%;
}

.logo-container {
    width: 250px;
    position: relative;
    z-index: 2;
}

.logo {
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 6rem 0;
    text-align: center;
    flex: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Importação da fonte */
@import url('./fonts/ultraprint-font.css');

.slogan {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-style: normal;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    from {
        filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.8));
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 20px rgba(192, 192, 192, 1));
        transform: scale(1.03);
    }
}

/* Countdown */
.countdown-container {
    margin: 3rem 0;
}

.countdown-header {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.countdown-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
    margin-top: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

/* .newsletter input rule removed as it's no longer used */

.button-link {
    display: inline-block;
    width: 100%;
    max-width: 250px;
}

.newsletter button {
    width: 100%;
    max-width: 250px; /* Increased max-width for better balance */
    border-radius: 0;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    /* margin-top removed */
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 120px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    #countdown {
        gap: 1rem;
    }
    
    .countdown-item span {
        font-size: 2.5rem;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input, .newsletter button {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    #countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        flex-basis: 40%;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
