/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Estilo base */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    font-family: 'Kanit', sans-serif;
    align-items: center;
    font-size: 11px;
    line-height: 1.0;
}

#main-conteiner {
    flex: 1;
    min-height: px;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1a1a1a;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap; /* Mantém os elementos em uma linha no desktop */
}

/* Estilizando a div logo */
.logo {
    text-align: center; /* Centraliza o conteúdo dentro da div */
    margin: 20px 0; /* Adiciona margem superior e inferior */
}

/* Estilizando a imagem do logo */
.logo img {
    max-width: 50%; /* Faz com que a imagem não ultrapasse a largura do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    width: 200px; /* Define uma largura fixa para a imagem */
    border: none; /* Remove bordas, se houver */
}

/* Adicionando um efeito de hover ao link */
.logo a {
    text-decoration: none; /* Remove o sublinhado do link */
}

.logo a:hover img {
    opacity: 0.8; /* Diminui a opacidade da imagem ao passar o mouse */
    transition: opacity 0.3s; /* Adiciona uma transição suave */
}

header .logo:hover {
    transform: scale(1.1); /* Aumenta ligeiramente o logo ao passar o mouse */
}

header .social-media {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    margin-left: auto;
}

header .social-media a {
    color: #ffd700;
    font-size: 2.5em;
    margin-left: 25px;
    transition: color 0.5s ease, transform 0.5s ease;
}

header .social-media a:hover {
    transform: scale(1.2);
    color: #ffffff;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: #ffd700;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ffffff;
}

header .links-rodape {
    display: flex;
    margin-right: 50px;
    gap: 40px;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.links-rodape {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    align-items: start;
    margin: 1px;
    font-weight: bold;
}

.links-rodape a {
    color: #ffd700;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-rodape a:hover {
    color: #fff;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    align-items: flex-end;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .links-rodape {
        gap: 10px;
        align-items: flex-end;
        padding-left: 20px;
    }
}

/* Responsividade para telas médias */
@media (max-width: 1086px) {
    header {
        flex-direction: row;
        align-items: center;
        padding: 10px;
        flex-wrap: wrap;
    }

    .img {
        margin-left: 20px;
        width: 80px;
    }

    header .links-rodape {
        justify-content: center;
        gap: 14px;
        width: 5px;
        padding-left: 20px;
        font-size: 8.0px;
    }

    header .social-media {
        justify-content: center;
        gap: 10px;
        margin: 10px 0;
        font-size: 9px;
    }
}

/* Responsividade para telas pequenas */
@media (max-width: 882px) {
    header {
        flex-direction: row;
        align-items: center;
        padding: 5px;
        flex-wrap: wrap;
    }

    .img {
        width: 65px;
        margin-left: 10px; /* Alinha a imagem ao início da esquerda */
    }

    header .links-rodape {
        justify-content: center;
        gap: 8px;
        font-size: 7.8px;
        padding-left: 10px;
        margin: 0px;
    }

    header .social-media {
        justify-content: center;
        gap: 2px;
        margin: 10px 0;
    }
}

#main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-logo {
    text-align: right;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0; /* Remove qualquer margem padrão do body */
}

#main-container {
    flex: 1; /* Faz o main-container ocupar o espaço restante */
    padding-bottom: 100px; /* Ajuste conforme a altura do seu footer */
}

footer {
    position: relative; /* Certifique-se de que o footer não está fixo */
    width: 100%;
    background-color: #1a1a1a; /* Adiciona uma cor de fundo, se necessário */
    padding: 10px 0; /* Adiciona um pouco de padding para espaçamento */
    text-align: center; /* Centraliza o texto dentro do rodapé */
}

/* Media query para telas menores */
@media (max-width: 768px) {
    #main-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-logo {
        text-align: center;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 600px) {
    .links-rodape {
        display: none; /* Esconde os links do rodapé no celular */
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .links-rodape.active {
        display: flex; /* Mostra os links quando o menu está ativo */
    }
}

@media (max-width: 460px) {
    header .links-rodape {
        display: none; /* Oculta os links no celular */
    }

    /* Logo e Social Media em uma linha */
    .logo {
        align-items: start; /* Alinha o conteúdo à esquerda */
        justify-content: start;
        margin: 20px 0; 
        margin-right: 280px;
    }

    .logo img {
        max-width: 100%; 
        width: 200px; 
        height: 40px;
        border: none; 
    }

    header .social-media {
        display: none;
        order: 1;
        justify-content: center; /* Centraliza os ícones */
        gap: 10px; /* Ajusta o espaçamento entre os ícones */
        margin-top: 0; /* Remove a margem superior */
    }

    header .social-media a {
        order: 1;
        font-size: 1.5em; /* Ajusta o tamanho dos ícones no celular */
    }

    .links-rodape {
        display: none; /* Esconde os links no mobile */
        align-items: center;
    }
}

/*---------------------- FLOAT---------------------*/

/* Responsividade */
@media (max-width: 768px) {
    header .links-rodape {
        display: none; /* Oculta os links no celular */
    }

    .social-media {
        justify-content: center; /* Centraliza os ícones no celular */
        gap: 10px; /* Ajusta o espaçamento entre ícones */
        margin-top: 10px; /* Adiciona margem superior */
    }

    .social-media a {
        font-size: 1.5em; /* Ajusta o tamanho dos ícones no celular */
    }
}

/*---     ------------           ------------    ----------- ----------------contato.html----------------     ----------- -----------     -----------   ----------  --------*/

/* Fachada */
.fachada {
    text-align: center;
    padding: 20px;
    background: linear-gradient(50deg, #000000, #f9f002);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1700px;
}

/* Card do Logo */
.card-logo {
    margin-bottom: 20px;
}

.card-logo i {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 10px;
}

.card-logo .subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
}

/* Contatos Rodapé */
.contatos-rodape {
    margin: 20px 0;
    margin-left: 10rem;
    margin-right: 10rem;
    padding: 20px;
    background: linear-gradient(to right, #000000, #333333);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.contatos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Cartões de Contato */
.card-a {
    background: linear-gradient(to bottom, #333333, #000000);
    border: 2px solid #ffd700;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.card-a a {
    text-decoration: none;
    color: #ffd700;
}

.card-a h1 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.back-botao {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffd700;
    color: #000000;
    width: 50px;
    margin-left: 2rem;
    margin-right: 2rem;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.card-a:hover .back-botao {
    transform: scale(1.1);
    background: linear-gradient(to bottom, #ffd700, #ccac00);
}

/* Localização Rodapé */
.card-b {
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 20px;
    background: linear-gradient(to right, #000000, #444444);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.localizacao-rodape h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.localizacao-rodape iframe {
    border: 2px solid #ffd700;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin-bottom: 10px;
}

/* Responsividade Específica para Telas Pequenas */
@media (max-width: 576px) {
    .fachada {
        padding: 10px;
    }

    .contatos-rodape {
        margin: 5px;
        padding: 12px;
    }

    .card-a {
        width: 80px;
        padding: 8px;
    }

    .card-a h1 {
        font-size: 12px;
    }

    .back-botao {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .localizacao-rodape h2 {
        font-size: 1rem;
    }

    .localizacao-rodape iframe {
        height: 200px;
    }

    .footer-content {
        margin-bottom: 108px;
    }
}

/*-------------      ----------------        ------------ ------------     SOBRE-HTML     ------------------------ ------------       --------------   ------------     ------------- -----    ---------     ---------          -------           ---*/

/* Estilo Geral */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.loja {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loja:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Imagem */
.loja img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Títulos */
.loja .titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: initial;
    background: linear-gradient(to right, #ffc400, #ff8c00);
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Ensure the title is inline */
}

.loja .subtitle {
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 80px 10px 80px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    display: inline-block; /* Ensure the subtitle is inline */
    margin-left: 10px; /* Add some space between title and subtitle */
    vertical-align: middle; /* Align vertically with the title */
}

/* Texto */
.loja .texto {
    font-size: 1rem;
    line-height: 1.8;
    margin: 10px 0;
    color: #444;
    font-weight: 400;
}

.loja .text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 10px 0;
    color: #444;
    font-weight: 500;
}

.loja .textl {
    font-size: 1rem;
    line-height: 1.8;
    margin: 10px 0;
    color: #444;
    font-weight: 600;
    font-style: italic;
}

/* Temporizador */
#tempo-online {
    font-size: 1.8rem;
    text-align: end;
    font-weight: bold;
    color: #000000;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Ensure the date is inline */
    margin-left: 10px; /* Add some space between subtitle and date */
    vertical-align: middle; /* Align vertically with the subtitle */
    padding: 10px;
    border-radius: 7px;
}

/* Layout */
.col-md-4 {
    display: flex;
    justify-content: end;
    align-items: end;
}

/* Responsividade */
@media (max-width: 768px) {
    .loja {
        padding: 15px;
    }

    .loja .titulo {
        font-size: 2rem;
    }

    .loja .subtitle {
        font-size: 1.2rem;
    }

    .loja .texto, .loja .text, .loja .textl {
        font-size: 0.9rem;
    }
}

/* Ajuste o estilo do footer */
footer {
    position: center;
    width: 100%;
    margin-top: 0;
    bottom: 0;
    background-color: #1a1a1a;
    padding: 10px 0;
    text-align: center;
}

/* Logo e copyright juntos */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinha o conteúdo ao centro */
}

.footer-content {
    display: block;
    text-align: center;
    
    min-width: 10px;
    align-items: center; /* Alinha o conteúdo ao centro */
    align-self: center; /* Alinha o conteúdo ao centro */
    align-content: center; /* Alinha o conteúdo ao centro */
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

/* Links do rodapé */
.footer-links {
    display: flex;
    font-weight: bold;
    align-content: center;
    gap: 50px;
    margin: 33px;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    align-items: center;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Texto de copyright */
.footer-logo {
    font-size: 8px;
    color: #626060;
}

.history-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Add some space between elements */
    text-align: center;
    margin-bottom: 20px;
}

/* Estilo para a galeria de imagens */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    background: #f4f4f9; /* Fundo claro para destacar as imagens */
}

.gallery-item {
    width: calc(25% - 10px);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adiciona sombra às imagens */
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Adiciona bordas arredondadas às imagens */
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Aumenta a sombra ao passar o mouse */
}

/* Estilo responsivo */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: calc(100% - 10px);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Estilo para o título "Nossa Historia" */
.titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right, #ffc400, #ff8c00);
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

/* Estilo para o subtítulo */
.subtitle {
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 80px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

/* Estilo para o texto */
.texto, .text, .textl {
    font-size: 1rem;
    line-height: 1.8;
    margin: 10px 0;
    color: #444;
    font-weight: 400;
}

/* Estilo para o temporizador */
#tempo-online {
    font-size: 1.8rem;
    text-align: center;
    font-weight: bold;
    color: #000000;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    padding: 10px;
    border-radius: 7px;
}

/* Novas seções e melhorias de layout */
.hero-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #f4f4f9 100%);
    border-radius: 15px;
    margin: -20px -20px 40px;
    overflow: hidden;
}

.title-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.featured-image-container {
    position: relative;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.about-section {
    padding: 60px 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 40px 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #ffc400 0%, #ff8c00 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary {
    background: #fff;
    color: #ff8c00;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 40px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.title-group {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,244,219,0.95) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.titulo {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #ffc400, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    padding: 10px;
}

.timeline-container {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(to right, #ffc400, #ff8c00);
    display: inline-block;
}

.timeline-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

#tempo-online {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .titulo {
        font-size: 2.5rem;
    }

    .timeline-content {
        flex-direction: column;
        gap: 10px;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    #tempo-online {
        font-size: 1.6rem;
    }
}

/* Melhorias na seção inicial e fachada */
.hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    border-radius: 20px;
    margin: -20px -20px 60px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 215, 0, 0.1) 50%, rgba(255, 215, 0, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.intro-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.intro-card:hover {
    transform: translateY(-10px);
}

.featured-content {
    margin-top: 50px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
}

.featured-content:hover {
    transform: perspective(1000px) rotateX(0);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.featured-content:hover .featured-image {
    transform: scale(1.05);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 215, 0, 0.2),
        rgba(0, 0, 0, 0.5)
    );
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.featured-content:hover .overlay-gradient {
    opacity: 0.6;
}

.timeline-box {
    background: linear-gradient(45deg, #ffc400, #ff8c00);
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .intro-card {
        padding: 30px;
    }

    .featured-content {
        margin-top: 30px;
        transform: none;
    }
}

/* Melhorias na apresentação */
.intro-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,244,219,0.95) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-box {
    background: linear-gradient(to right, #ffc400, #ff8c00);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}

.timeline-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    opacity: 0.1;
}

.timeline-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.titulo {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffc400, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
    position: relative;
}

.subtitle {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    margin-top: 40px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    pointer-events: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .intro-card {
        padding: 20px;
        margin: 0 15px;
    }

    .titulo {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.6rem;
    }

    .timer-display {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .timer-display {
        font-size: 1.5rem;
    }
}

/* Novo estilo para o hero section */
.hero-section {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 0;
    margin: -20px -20px 60px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-container {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.intro-container:hover {
    transform: translateY(-10px);
}

.title-box {
    text-align: center;
    margin-bottom: 30px;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffc400, #ff8c00);
    margin: 20px auto;
    border-radius: 2px;
}

.timeline-container {
    background: linear-gradient(45deg, #ffc400, #ff8c00);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.timer-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.timer-box i {
    font-size: 2rem;
    color: white;
}

.timer-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.image-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.overlay-content span {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
}

.image-showcase:hover .image-overlay {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 15px;
    }

    .intro-container {
        padding: 25px;
    }

    .timer-text {
        font-size: 1.4rem;
    }

    .overlay-content span {
        font-size: 1.2rem;
    }
}

/* Estilo do novo layout do cabeçalho */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    margin-bottom: 30px;
}

.titulo-principal {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ff8c00;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.valor-card {
    background: linear-gradient(145deg, #ffc400, #ff8c00);
    padding: 25px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
}

.valor-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.valor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.valor-card ul {
    list-style: none;
    padding: 0;
}

.valor-card ul li {
    font-size: 1.1rem;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.valor-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-row {
        flex-direction: column;
        align-items: center;
    }

    .titulo-principal {
        font-size: 2.8rem;
    }

    .valor-card {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .titulo-principal {
        font-size: 2.2rem;
    }
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px auto;
    max-width: 1200px;
    width: 100%;
}

.valor-card {
    min-width: 0; /* Remove o min-width anterior */
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .valor-card {
        padding: 15px;
        margin-bottom: 10px;
    }

    .valor-card i {
        font-size: 1.8rem;
    }

    .valor-card h3 {
        font-size: 1.2rem;
    }

    .valor-card ul li {
        font-size: 0.9rem;
    }
}

/* Ajustes para o temporizador */
.timeline-container {
    width: 100%;
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(45deg, #ffc400, #ff8c00);
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 15px auto;
    max-width: 500px;
}

.timer-box i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.timer-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.3;
}

/* Responsividade ajustada */
@media (max-width: 768px) {
    .cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .valor-card {
        min-width: 100%;
        margin: 0;
    }

    .timer-box {
        padding: 15px;
        margin: 10px;
    }

    .timer-text {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.6rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .timer-box {
        padding: 10px;
    }

    .timer-text {
        font-size: 1.4rem;
    }

    .timer-box i {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.4rem;
        padding: 5px;
    }

    .valor-card {
        padding: 15px;
    }

    .valor-card h3 {
        font-size: 1.3rem;
    }

    .valor-card ul li {
        font-size: 1rem;
    }
}

.cards-container {
    display: flex;
    gap: 20px;
    margin: 20px auto;
    flex-wrap: nowrap;
    max-width: 1200px;
}

.valor-card {
    flex: 1;
    width: 100%;
    min-width: 280px;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .valor-card {
        width: 100%;
        min-width: 100%;
        margin-bottom: 15px;
    }

    .header-row {
        flex-direction: column;
    }

    .title-box {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        padding: 10px;
        gap: 15px;
    }

    .valor-card {
        min-width: 100%;
        padding: 15px;
        margin-bottom: 10px;
    }

    .valor-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .valor-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .valor-card ul li {
        font-size: 0.9rem;
        margin: 5px 0;
        padding-left: 15px;
    }

    .timeline-container {
        padding: 15px;
        margin: 20px auto;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .timer-box {
        padding: 12px;
    }

    .timer-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .valor-card {
        padding: 12px;
    }

    .valor-card i {
        font-size: 1.8rem;
    }

    .valor-card h3 {
        font-size: 1.1rem;
    }

    .valor-card ul li {
        font-size: 0.85rem;
        margin: 4px 0;
    }
}
