/* 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: #FF5E9A; /* Bege quase laranja */
    --highlight-hover:  #FF5E9A; /* 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;
}
.container {
    max-width: 1170px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.row {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    margin-right: -15px;
    margin-left: -15px;
}

@media (max-width: 750px) {     
    .row {
        flex-direction: column;
        justify-content: center; /* Allow wrapping below 480px */
    }

}

/* 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-color: #CBBBAB;
    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: #FF5E9A; /* 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: pulse2 1.5s infinite;
 
}

@keyframes pulse2 {
    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: 60%;
    text-align: center;
    margin-bottom: -20px; /* Faz a imagem encostar na faixa */
}
@media screen and (max-width: 720px) {
    .header-image {
        max-width: 80%; /* Remove a margem negativa em telas menores */
    }
    
    
}
@media screen and (max-width: 550px) {
    .header-image {
        max-width: 100%; /* Remove a margem negativa em telas menores */
    }
    
    
}
@media screen and (max-width: 815px) {
   .header-content{
    flex-direction: column;
   }
   .header-text{
    max-width: 300px;
    text-align: center;
   }
   .header-text h1{
    font-size: 2.5rem;
   }
    .header-text p{
     font-size: 1.5rem;
    }
}


.header-image img {
    width: 100%; /* Corrigido para 100% */

    
    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;
}

/* CTA e FAQ Section */
.cta-faq-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 2rem;
    /* Removido o box-shadow */
}

.cta {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    /* Removido o box-shadow */
}
.cta-2 {
    flex: 1;
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    text-align: center;
    /* Removido o box-shadow */
}

.cta h2 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.cta p {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.cta-button {
    display: inline-block;
    background: var(--highlight-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: var(--highlight-hover);
    transform: scale(1.05);
}

.faq {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    /* Removido o box-shadow */
}

.faq h3 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    font-size: 1rem;
    color: var(--highlight-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: none; /* Esconde a resposta inicialmente */
}

.faq-item.active .faq-answer {
    display: block; /* Mostra a resposta quando ativo */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* Rotaciona a seta */
}

/* CTA WhatsApp */
.cta-whatsapp {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-whatsapp-button {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-whatsapp-button:hover {
    background: #1da851;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: 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;
    }

    .cta-faq-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta, .faq {
        width: 100%;
    }
}
.col-md-4 .logo{
display: flex;
flex-direction: column;
}
/* Footer */
.footer {
    background: #000000; /* Fundo claro */
    padding: 40px 0;
    color: #333;
    font-size: 14px;
    font-family: 'Gilroy', sans-serif;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 18px;
    color: var(--highlight-color); /* Cor de destaque */
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--highlight-color); /* Cor de destaque */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--highlight-hover); /* Cor de destaque no hover */
}

.footer-bottom {
    margin-top: 30px;
    font-size: 12px;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

.footer i {
    color: var(--highlight-color); /* Cor de destaque */
    margin-right: 10px;
}

.footer-social-icons {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social-icons a {
    color: var(--highlight-color); /* Cor de destaque */
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer p {
    color: white;
}


.footer-social-icons a:hover {
    color: var(--highlight-hover); /* Cor de destaque no hover */
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .row > div {
        margin-bottom: 20px;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse 3s infinite; /* Updated animation */
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para o botão de WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}