﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i");
@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700");

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px; 
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-family: "Poppins", sans-serif;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}

.video-responsive {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.somente-desktop {
    display: block; /* ou o que você quiser */
}

@media (max-width: 767px) {
    .somente-desktop {
        display: none;
    }
}

.lista-fogo {
    list-style: none;
    padding-left: 0;
}

    .lista-fogo li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
    }

        .lista-fogo li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 3px;
            width: 14px;
            height: 14px;
            background: radial-gradient(circle at 50% 60%, orange 40%, red 70%, transparent 80%);
            border-radius: 50%;
            animation: fogo 0.6s infinite alternate;
        }

@keyframes fogo {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    100% {
        transform: scale(1.3);
        filter: brightness(1.4);
    }
}

.counter-section {
    padding: 60px 0;
    background: #f5f5f5;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.counter-box {
    margin-bottom: 30px;
}

    .counter-box p {
        font-size: 20px;
        margin-bottom: 5px;
        color: #555;
    }

.counter {
    font-size: 48px;
    font-weight: bold;
    color: #970A56;
    display: block;
}


.contact-section {
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
    font-family: "Poppins", sans-serif;
}

    .contact-section h2 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 25px;
    }
/* Botão do WhatsApp */

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

    .whatsapp-button i {
        font-size: 1.5rem;
    }

    .whatsapp-button:hover {
        background-color: #1ebe5d;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    }