/* Importação de fontes */


/* Importação de fontes Gilroy */
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Cores principais */
:root {
    --highlight-color: rgb(248, 89, 116); /* Bege quase laranja */
    --highlight-hover:  rgb(134, 7, 103); /* Bege quase laranja mais forte */
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0.5rem 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 0.5rem;
}

.brand-name {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.social-icon {
    margin-left: 1rem;
    font-size: 1.5rem;
    color: var(--highlight-color);
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    color: var(--highlight-hover);
    transform: scale(1.1);
}

/* Header */
header {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(241, 224, 175, 0.37), rgba(255, 185, 246, 0.8)), 
                url('background.png') no-repeat center center;
    background-size: cover;
}

.background-overlay {
    display: none; /* Gradiente já aplicado diretamente no header */
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem; /* Espaço para a navbar */
    flex-wrap: wrap; /* Permite responsividade */
}

.header-text {
    max-width: 50%;
    flex: 1 1 300px; /* Responsivo */
}

.header-text h1 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700; /* Usando Gilroy Bold */
    font-size: 3rem;
    margin-bottom: 1rem;
    color:  rgb(248, 89, 116); /* Destaque para o título */
}

.header-text p {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400; /* Usando Gilroy Regular */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: black; /* Destaque para o texto */
}

.header-text .cta {
    font-family: 'Gilroy', sans-serif;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--highlight-color);
    margin-top: 1rem; /* Abaixa o CTA */
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
 
}

@keyframes pulse {
    0%, 100% {
        color: rgb(134, 7, 103);
    }
    50% {
        color: rgb(248, 89, 116);
    }
}

.header-countdown-container {
    max-width: 40%;
    flex: 1 1 300px; /* Responsivo */
    text-align: center;
    margin-top: 2rem; /* Abaixa o countdown */
}

.header-image {
    position: relative;
    max-width: 40%;
    text-align: center;
    margin-bottom: -4px; /* Faz a imagem encostar na faixa */
}

.header-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px 8px 0 0; /* Remove bordas arredondadas na parte inferior */
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 8px 8px;
}

.image-overlay p {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.instagram-button {
    display: inline-block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Gradiente Instagram */
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
}

.instagram-button:hover {
    transform: scale(1.1); /* Adicionado transform no hover */
}

.header-countdown {
    background: #fff;
    color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    width: 100%; /* Define largura fixa */
    box-sizing: border-box;
}

.header-countdown h2 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700; /* Usando Gilroy Bold */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

#countdown {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400; /* Usando Gilroy Regular */
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight-color);
    min-width: 200px; /* Evita redimensionamento */
}

.progress-bar {
    width: 100%; /* Largura fixa */
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.progress {
    width: 5%; /* Inicialmente quase vazia */
    height: 100%;
    background: linear-gradient(90deg, var(--highlight-color), var(--highlight-hover));
    transition: width 0.5s ease;
}

/* Form Section */
#inscricao {
    background: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#inscricao h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#inscricao p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

#inscricao form input,
#inscricao form button {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#inscricao form button {
    background: #00bfff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#inscricao form button:hover {
    background: #007acc;
}

/* Content Section */
section {
    padding: 2rem 1rem;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.footer-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #331c2c;
    color: #fff;
    padding: 1rem 2rem;
    width: 60%;
    border-radius: 20px;
    box-sizing: border-box;
    text-align: center;
    position: relative; /* Garante que o footer fique dentro do header */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-banner p {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.2rem; /* Texto maior e mais chamativo */
    font-weight: 700;
    margin: 0 0 1rem 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .header-text, .header-countdown-container {
        max-width: 100%;
        text-align: center;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .header-text p, .header-text .cta {
        font-size: 1rem;
    }

    .footer-banner {
        position: absolute; /* Faz o footer se ajustar dentro do header */
        bottom: 0;
        
        padding: 1rem;
        width: 95%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-banner p {
        padding: 0px;
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .instagram-button {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}
