/*
 * ----------------------------------------------------------------------------------
 *  Copyright (c) 2019-2025 Pierre3L@yahoo.com
 *  Last change:  03/02/2025 15:09 ( 2025-2-3 )
 *  Author: pierr
 *  Project-File: backoffice - entrance.css
 *  This file is subject to the terms and conditions defined in file 'LICENSE.txt',
 *  which is part of this source code package.
 * ----------------------------------------------------------------------------------
 */

/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* rgba(211, 237, 250, 0.1);Background color for the entire website, including individual sections */
    --default-color: #065255; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #065255; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #065255; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/* WhatsApp dilog begin */

.entrance-wa-chat-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 240px;
    border: 1px solid #bbb;
    border-radius: 10px;
    background-color: #e5ddd5;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Valor alto para garantir que fique na frente */
}

.entrance-wa-chat-header {
    background-color: #065255;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.entrance-wa-chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.entrance-wa-chat-footer {
    padding: 10px;
    background-color: #f5f5f5;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.entrance-wa-chat-message {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.entrance-wa-chat-close-btn {
    cursor: pointer;
    font-size: 22px;
}

/* WhatsApp dilog end */


.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    font-size: 2rem;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #FFFFFF; /*var(--default-color);*/
    /*background-color: rgba(26, 63, 89, 0.2); !*var(--background-color);*!*/
    /*color:#1A3F59;*/
    font-size: 14px;
    padding-bottom: 5px;
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF; /*var(--default-color);*/
}

.footer .footer-top {
    padding-top: 0px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: #FFFFFF; /*var(--heading-color);*/
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    /*color: color-mix(in srgb, var(--default-color), transparent 30%);*/
    /*color: rgb(254, 254, 254, 0.4);*/
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    /*color: var(--accent-color);*/
    color: rgb(254, 254, 254, 0.4);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    /*color: color-mix(in srgb, var(--default-color), transparent 30%);*/
    color: rgb(254, 254, 254, 0.4);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    /*color: var(--accent-color);*/
    color: rgb(254, 254, 254);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}
