@charset "UTF-8";
/* CSS Document */
/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
a {
    text-decoration: none!important;
}
a:hover {
    text-decoration:none!important;
}
.radio-player {
    background-image: linear-gradient(to top, #678c30, #759f30, #83b230, #92c52e, #a2d92b);
    padding: 3px 3px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.play-btn {
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.play-btn:hover {
    background-color: #117a37;
    color: white;
}
.play-btn svg {
    stroke: #1d8348;
}
.play-btn:hover svg {
    stroke: white;
}
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}
.volume-control svg{
    color: white;
}
.volume-control input[type="range"] {
    -webkit-appearance: none;
    width: 100px;
    height: 6px;
    background: white;
    border-radius: 5px;
    outline: none;
}
.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #117a37;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.volume-control input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #117a37;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
/* Responsivo */
@media (max-width: 500px) {
    .radio-player {
        flex-direction: row;
        gap: 15px;
        padding: 5px;
    }
    .volume-control input[type="range"] {
        width: 150px;
    }
}
/*linha dourada*/
/* Define o estilo neon dourado */
.neon-line {
    width: 100%;
    height: 1px;
    background-color: #0b6503;
    box-shadow: 0 0 2px #0b6503, 0 0 3px #0b6503, 0 0 4px #0a7100, 0 0 5px #0a7100;
    animation: glow 1.5s ease-in-out infinite alternate;
}
/* Animação de brilho pulsante */
@keyframes glow {
    0% { box-shadow: 0 0 2px #0b6503, 0 0 3px #0a7100, 0 0 4px #0a7100; }
    100% { box-shadow: 0 0 3px #0b6503, 0 0 5px #0b6503, 0 0 7px #0a7100, 0 0 9px #0a7100; }
}
/*HERO*/
.hero {
    background: url("../img/img1.webp") no-repeat center center fixed;
    background-size: cover;
    color: white;
    padding: 100px 0;
}
.hero h1 {
    font-size: 4rem;
}
.hero p{
    font-weight: 400;
}
/* Animação saltitante */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.btn-back {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background-image: linear-gradient(to top, #678c30, #759f30, #83b230, #92c52e, #a2d92b);
    color: #eff1f2;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    animation: bounce 2s infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-back:hover {
    background-image: linear-gradient(to top, #77a62d, #7cb325, #84c31c, #86cd00, #a2d92b);
    transform: scale(1.1) translateY(-5px); /* soma o efeito de zoom com uma leve subida no hover */
}
/*SLIDER*/
.slide1 {
    margin: 20px auto;
    max-width: 500px;}

.slide1 img {
    height: 400px;
    object-fit: cover;
}

.sobre {
    background-color: #f8f9fa;
}
.sobre h2 {
    color: #734429;
    font-weight: bold;
}
.sobre p {
    color: #333;
    font-size: 1.1rem;
}
.sobre b{
    color: #734429;
    font-weight: 500;
}
/* Estilo do botão WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    background-color: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}
.whatsapp-float svg{
    color: white;
}
/* Fundo do Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Caixa do Conteúdo */
.popup-conteudo {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
    animation: fadeInScale 0.5s ease;
}

/* Animação de entrada */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9);}
    to { opacity: 1; transform: scale(1);}
}

/* Ícone */
.popup-conteudo .icone {
    font-size: 50px;
    margin-bottom: 10px;
}

.popup-conteudo h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.popup-conteudo p {
    font-size: 16px;
    line-height: 1.5;
}

/* Contador */
.contador {
    margin-top: 15px;
    font-size: 14px;
    color: #ffd700;
    font-weight: 500;
}

/* Botão Fechar */
.popup-conteudo .fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-conteudo .fechar:hover {
    color: #ff4b4b;
}
.footer1{
    background: linear-gradient(135deg, #1b1b1b, #014421);
    background-size: cover;
    padding: 100px 0;
}
