/* styles.css */

/* Cabeçalho */
header {
    background-color: #128C7E; /* Verde */
}

.nav-link {
    color: white !important;
}

.nav-link.btn-warning {
    background-color: #ffc107;
    border: none;
}

      /* Botão de WhatsApp */
        .whatsapp-btn {
            position: fixed;
            bottom: 80px; /* Ajuste conforme necessário */
            right: 20px;
            z-index: 1000;
            background-color:  #25D366; /* Cor verde do WhatsApp */
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            padding: 15px;
            font-size: 24px; /* Tamanho do ícone */
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
        }

        /* Botão de rolar para cima */
        .scroll-to-top {
            position: fixed;
            bottom: 20px; /* Acima do botão do WhatsApp */
            right: 20px;
            z-index: 1000;
            background-color: #007bff; /* Azul padrão do Bootstrap */
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            padding: 15px;
            font-size: 24px; /* Tamanho do ícone */
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .scroll-to-top:hover {
            background-color: #0056b3;
        }

        /* Modal do WhatsApp */
        .modal {
            display: none; /* Inicialmente oculto */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
        }

        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 20px;
            border-radius: 5px;
            width: 80%;
            max-width: 500px;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
        }

        textarea {
            width: 100%;
            height: 100px;
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        button {
            background-color: #28a745; /* Verde */
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #218838;
        }

        .form-section {
            background: #f8f9fa;
            padding: 40px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        footer{

            background-color: #128C7E;
        }
        
.modal-content {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #25D366; /* Cor de fundo do WhatsApp */
}

.modal-footer .btn {
    border-radius: 5px; /* Arredondar os cantos dos botões */
}

#whatsappMessage {
    border: 1px solid #25D366; /* Borda do textarea com cor do WhatsApp */
}

#whatsappMessage:focus {
    border-color: #25D366; /* Cor da borda quando o textarea está em foco */
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.5); /* Sombra para destaque */
}
