@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

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

img{
    width: 100%;
    display: flex;
}

a{
    text-decoration: none;
}

body{
    font-family: 'Poppins' , sans-serif;
    background-color: #FFFFFF;
}

nav{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem ;
}

.nav-logo{
    max-width: 100px;
}

.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.links a{
    position: relative;
    margin-bottom: 0.75rem;
    color: #1A1A1A;
}

.btn{
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: 'Poppins' , sans-serif;
    background-color: #E50914;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;

}

.btn a{

    color: white;

}

.btn:hover{
    background-color: #B20710;
}

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

.blur{
    position: relative;
    box-shadow: 0 0 1000px 50px #E50914;
    z-index: -100;
}

header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    width: 80%;
}

h4{  
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
    font-weight: 600;
}

h1{
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

p{
    color: #555;
    margin-bottom: 2rem;
}

.caracteristicas {
    position: relative;
    padding-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    width: fit-content;
    margin: auto;
}

.header{
    color: #1A1A1A;
    font-size: 3rem;
    display: flex;
    justify-content:center;
}

.caracteristicas .card h4{
    font-size: 25px;
    color: #1A1A1A;
}

.caracteristicas .card a{
    color: #1A1A1A;
}

.caracteristicas .card{
    background-color: #F2F2F2;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.caracteristicas .card:hover{
    background-color: #FFFFFF;
    border-color: #E50914;
}

.caracteristicas .card span{
    background-color: #E50914;
    padding: 2px 10px;
    margin-bottom: 10px;
    font-size: 1.75rem;
    border-radius: 5px;
    color: white;
    display: inline-block;
}

.caracteristicas .card a:hover{
    color: #E50914;
}

.precos {
    position: relative;
    padding-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    width: fit-content;
    margin: auto;
}

.precos-p{
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    font-size: 20px;
    color: #1A1A1A;
}

.precos .card:hover{
    background-color: #FFFFFF;
    border-color: #E50914;
}

.precos .card h3{
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px dashed #E50914;
    color: #1A1A1A;
}

.precos .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F2F2F2;
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.precos .card .conteudos {
    flex: 1;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    margin: 2rem auto;
}

#feedback-form input,
#feedback-form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: none;
    background-color: #F2F2F2;
    color: #1A1A1A;
    font-family: 'Poppins', sans-serif;
    resize: none;
}

#feedback-form input::placeholder,
#feedback-form textarea::placeholder {
    color: #777;
}

#feedback-form button {
    align-self: flex-start;
    background-color: #E50914;
    color: #fff;
}

#feedback-form button:hover {
    background-color: #B20710;
}

.footer {
    background-color: #F2F2F2;
    padding: 2rem 1rem;
    color: #555;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

#header-feedback,
#header-carac{
    color: #1A1A1A;
    font-size: 3rem;
    display: flex;
    justify-content:center;
}

html {
  scroll-behavior: smooth;
}


.carousel-premium {
    position: relative;
    max-width: 100%;
    height: 400px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Slides */
.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: block;
}

/* Animação */
.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}


.prev-premium, .next-premium {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 12px;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    transition: 0.3s;
    user-select: none;
}

.prev-premium:hover, .next-premium:hover {
    background: #E50914;
}

.prev-premium {
    left: 10px;
}

.next-premium {
    right: 10px;
}


.dots-premium {
    text-align: center;
    margin-top: 12px;
}

.dot-premium {
    height: 13px;
    width: 13px;
    margin: 0 4px;
    background-color: #bbb;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot-premium.active,
.dot-premium:hover {
    background-color: #E50914;
}


.contato-ong {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
   
    font-family: "Poppins", sans-serif;
}

.contato-social {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    animation: fadeIn 0.8s ease;
}

.contato-social h2 {
    color: #c00000;
    font-size: 26px;
    font-weight: 600;
}

.contato-social p {
    color: #555;
    margin-bottom: 20px;
}

/* Ícones Sociais */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-links a img {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 14px rgba(0,0,0,0.18);
}

.whatsapp { background: #25D366; }
.instagram { background: #C13584; }

.whatsapp:hover { background: #1da851; }
.instagram:hover { background: #a52b70; }


.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: pulse 1.8s infinite ease-in-out;
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-flutuante img {
    width: 35px;
}

.whatsapp-flutuante:hover {
    transform: scale(1.15);
    background: #1da851;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.13); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    header {
        grid-template-columns: 1fr;
        text-align: center;
        width: 95%;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    .caracteristicas {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        width: 100%;
    }

    .precos {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        width: 100%;
    }

    .carousel-premium {
        height: 320px;
    }
}

@media (max-width: 768px) {

    
    .nav-links {
        display: none; /* Oculta menu para mobile, se quiser posso fazer menu hamburguer */
    }

    .nav-logo {
        max-width: 80px;
    }

    header {
        padding-top: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.95rem;
    }

   
    .carousel-premium {
        height: 260px;
    }

    .prev-premium,
    .next-premium {
        font-size: 22px;
        padding: 10px;
    }

  
    .contato-social {
        width: 90%;
    }

    
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-flutuante img {
        width: 28px;
    }
}

@media (max-width: 480px) {

    nav {
        padding: 1rem;
    }

    header {
        width: 100%;
        gap: 1rem;
    }

    h1 {
        font-size: 1.7rem;
        line-height: 2.3rem;
    }

    .caracteristicas,
    .precos {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .carousel-premium {
        height: 220px;
    }

    .contato-social h2 {
        font-size: 22px;
    }

    .social-links a {
        font-size: 14px;
        padding: 10px;
    }

    /* BOTÃO WHATSAPP */
    .whatsapp-flutuante {
        width: 50px;
        height: 50px;
    }

    .whatsapp-flutuante img {
        width: 26px;
    }
}
