        :root {
            --primary-color: #ff4757; 
            --secondary-color: #2f3542;
            --price-color: #e84118;
            --rating-color: #f1c40f;
            --light-bg: #f1f2f6;
            --header-height: 80px; /* Altura base Desktop */
        }

        body {
            font-family: 'Segoe UI', Roboto, sans-serif;
            background-color: var(--light-bg);
            color: #333;
            padding-top: var(--header-height);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- Header E-commerce --- */
        .navbar {
            background-color: #fff; 
            min-height: var(--header-height);
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: background-color 0.3s;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
            letter-spacing: -1px;
        }
        
        .navbar-brand span { color: var(--primary-color); }

        .nav-link {
            font-weight: 600;
            color: var(--secondary-color);
            text-transform: uppercase;
            font-size: 0.9rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        /* --- ESTILIZAÇÃO DO DROPDOWN ESCURO (3 COLUNAS) --- */
        .dropdown-menu {
            background-color: var(--secondary-color); /* Fundo Escuro */
            border: none;
            padding: 20px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-top: 15px; /* Pequeno espaçamento do botão */
        }

        .dropdown-header {
            color: rgba(255, 255, 255, 0.7); /* Cinza claro para título */
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .dropdown-item {
            color: #fff; /* Links brancos */
            padding: 8px 10px;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background-color: rgba(255, 71, 87, 0.2); /* Leve vermelho no hover */
            color: #fff;
            padding-left: 15px;
        }
        .accordion-button{
            font-weight: bold;
        }

        @media (min-width: 992px) {
            .nav-link:hover { color: var(--primary-color); }
            .dropdown-item:hover {
                background-color: #fff0f1;
                color: var(--primary-color);
            }
        }

        .cart-icon-wrapper {
            position: relative;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--secondary-color);
            transition: transform 0.2s;
        }
        
        .cart-icon-wrapper:hover { transform: scale(1.1); color: var(--primary-color); }
        
        .lateral{
                background: #e5e4e4;
                padding: 10PX;
                border: 1PX SOLID #ababab;
                border-radius: 0 0 8PX 8PX;
        }
        .section-about-tags h2, h3, h4, h5{
            display: contents !important;
            font-size: 1rem;

        }
        .full{
            /* display: inline-block; */
            /* padding: 6px 12px; */
            /* margin-bottom: 0; */
            font-size: 14px;
            font-weight: 400;
            /* line-height: 1.42857143; */
            /* text-align: center; */
            white-space: nowrap;
            vertical-align: middle;
            -ms-touch-action: manipulation;
            /* touch-action: manipulation; */
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-image: none;
            border: 1px solid #00000054;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 6px;
            }
        .full:hover{
            background: #fff;
        }
        .titulo{
            text-transform: uppercase;
            font-size: xx-large;
            font-weight: bold; ;
            
        }
        .nome{
             font-weight: bold;
        }
        .footertitulo{
            text-transform: uppercase;
            font-weight: bold; ;
        }
        /* Tags do Produto */
        .product-tags .badge {
            background-color: #f1f2f6;
            color: #555;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            margin-right: 5px;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
        }
        .product-tags .badge:hover {
            background-color: var(--secondary-color);
            color: #fff;
            cursor: pointer;
        }
        
        .badge-cart {
            position: absolute;
            top: -5px;
            right: -10px;
            font-size: 0.7rem;
            background-color: var(--primary-color);
            border-radius: 50%;
        }

        /* --- BUSCA MOBILE VISÍVEL --- */
        .search-form-mobile {
            display: none;
            margin: 10px 0;
        }
        
        .search-form-mobile input {
            border-radius: 20px;
            border: 1px solid #ced4da;
            padding: 8px 15px;
        }

        /* --- AJUSTES DE RESPONSIVIDADE E ALTURA --- */
        @media (max-width: 991.98px) {
            body { padding-top: 160px; }
            .search-form-mobile { display: flex; }
            .search-form { display: none !important; }

            .navbar-collapse {
                background-color: #212529; 
                border-top: 1px solid #343a40;
                padding: 20px 0;
                margin-top: 10px;
            }
            .nav-link {
                color: #ffffff !important;
                font-size: 1.1rem;
                padding: 10px 0 !important;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .nav-link:hover, .nav-link.active {
                color: var(--primary-color) !important;
                padding-left: 10px !important;
            }
            .dropdown-menu { background-color: #2c3034; border: none; color: #fff; }
            .dropdown-item { color: #ccc; padding-left: 25px; }
            .dropdown-item:hover { background-color: rgba(255,255,255,0.1); color: #fff; }
        }

        /* --- Banner Carousel --- */
        .carousel-item { height: 450px; background-color: #ddd; }
        .carousel-item img { object-fit: cover; height: 100%; filter: brightness(0.7); }
        .carousel-caption h5 { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

        /* --- Categorias --- */
        .category-card {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            height: 200px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .category-card:hover { transform: translateY(-5px); }
        .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .category-card:hover img { transform: scale(1.1); }
        .category-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }

        /* --- Cards de Produtos (Geral) --- */
        .section-title h2 {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        .section-title h2::after {
            content: '';
            display: block;
            width: 50%;
            height: 4px;
            background: var(--primary-color);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .product-card {
            background: #fff;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .product-image-wrapper {
            position: relative;
            padding-top: 100%; 
            overflow: hidden;
            background-color: #f8f9fa;
        }

        .product-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img { transform: scale(1.05); }

        .badge-sale {
            position: absolute;
            top: 10px; left: 10px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 10px;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 4px;
            z-index: 2;
        }

        .action-btns {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 3;
        }

        .product-card:hover .action-btns { opacity: 1; }

        .btn-round {
            width: 35px; height: 35px;
            border-radius: 50%;
            border: none;
            background: white;
            color: #333;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            display: flex; align-items: center; justify-content: center;
            transition: 0.2s;
        }
        .btn-round:hover { background: var(--primary-color); color: white; }

        .product-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
        
        .product-category {
            font-size: 0.8rem;
            color: #5e5e5e;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /*LATERAL WELL*/
            .well {
                min-height: 20px;
                padding: 19px;
                margin-bottom: 20px;
                background-color: #f5f5f5;
                border: 1px solid #e3e3e3;
                border-radius: 4px;
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
                box-shadow: inset 0 1px 1px rgba(0,0,0,.05)
            }
            
            .well blockquote {
                border-color: #ddd;
                border-color: rgba(0,0,0,.15)
            }
            
            .well-lg {
                padding: 24px;
                border-radius: 6px
            }
            
            .well-sm {
                padding: 9px;
                border-radius: 3px
            }
            .btn {
                display: inline-block;
                padding: 6px 12px;
                margin-bottom: 5px;
                font-size: 14px;
                font-weight: 400;
                line-height: 1.42857143;
                text-align: center;
                white-space: nowrap;
                vertical-align: middle;
                -ms-touch-action: manipulation;
                touch-action: manipulation;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                background-image: none;
                border: 1px solid transparent;
                border-radius: 4px
            }
            
            .btn-primary{
                background: var(--primary-color);
                color: #fff;
            }
            .btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus {
                outline: 5px auto -webkit-focus-ring-color;
                outline-offset: -2px
            }
            
            .btn.focus,.btn:focus,.btn:hover {
                color: #333;
                text-decoration: none
            }
            
            .btn.active,.btn:active {
                background-image: none;
                outline: 0;
                -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
                box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
            }
            
            .btn.disabled,.btn[disabled],fieldset[disabled] .btn {
                cursor: not-allowed;
                filter: alpha(opacity=65);
                -webkit-box-shadow: none;
                box-shadow: none;
                opacity: .65
            }
            
            a.btn.disabled,fieldset[disabled] a.btn {
                pointer-events: none
            }
            
            .btn-default {
                color: #333;
                background-color: #fff;
                border-color: #ccc
            }
            
            .btn-default.focus,.btn-default:focus {
                color: #333;
                background-color: #e6e6e6;
                border-color: #8c8c8c
            }
            
            .btn-default:hover {
                color: #333;
                background-color: #e6e6e6;
                border-color: #adadad
            }
            
            .btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default {
                color: #333;
                background-color: #e6e6e6;
                border-color: #adadad
            }
            
            .btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover {
                color: #333;
                background-color: #d4d4d4;
                border-color: #8c8c8c
            }
            
            .btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default {
                background-image: none
            }
            
            .btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover {
                background-color: #fff;
                border-color: #ccc
            }
            
            .btn-default .badge {
                color: #fff;
                background-color: #333
            }
            
        .rating { color: var(--primary-color); font-size: 1.0rem; margin-bottom: 10px; }

        .price-box { margin-top: auto; }
        
        .new-price {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        .old-price {
            font-size: 0.9rem;
            text-decoration: line-through;
            color: #999;
            margin-left: 10px;
        }

        .btn-add-cart {
            width: 100%;
            margin-top: 15px;
            border-radius: 5px;
            font-weight: 600;
        }

        /* --- SEÇÃO: AVALIAÇÕES GOOGLE (Fundo Cinza) --- */
        .section-reviews {
            background-color: #c1c5cd; 
            padding: 25px 0;
        }

        .google-review-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .google-review-card:hover { transform: translateY(-5px); }

        .reviewer-header { display: flex; align-items: center; margin-bottom: 20px; }
        .reviewer-avatar {
            width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-right: 15px;
        }
        .reviewer-info h6 { font-weight: 700; margin-bottom: 2px; color: #333; }
        .reviewer-date { font-size: 0.8rem; color: #999; }
        .review-stars { margin-top: 5px; color: var(--rating-color); font-size: 1rem; }
        .review-text { font-size: 0.95rem; color: #555; line-height: 1.6; font-style: italic; }
        .google-badge {
            margin-top: 20px; display: inline-flex; align-items: center; font-size: 0.8rem;
            color: #666; font-weight: 600; background: #f8f9fa; padding: 5px 12px; border-radius: 20px;
        }

        /* --- SEÇÃO: SOBRE + TAGS (Fundo Vermelho) --- */
        .section-about-tags {
            background-color: var(--secondary-color); /* Fundo Vermelho */
            padding: 60px 0;
            color: #fff;
        }

        .section-about-tags h4 { color: #fff; font-weight: 700; }
        .section-about-tags p { color: rgba(255,255,255, 0.9); } /* Branco com leve transparência */
        .section-about-tags a { color: #fff; text-decoration: underline; }
        .section-about-tags a:hover { color: rgba(255,255,255,0.8); }

        .tag-item {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9); /* Tags brancas para contraste */
            border: 1px solid rgba(255,255,255,0.2);
            padding: 12px 25px;
            border-radius: 50px;
            margin: 5px;
            font-weight: 600;
            color: #333;
            transition: 0.3s;
            cursor: default;
        }
        .tag-item i { margin-right: 8px; color: var(--primary-color); font-size: 1.2rem; }
        .tag-item:hover {
            background: #fff;
            color: var(--primary-color);
            border-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        /* --- Footer (Fundo Vermelho e Letras Brancas) --- */
        footer {
            background-color: var(--primary-color); /* Fundo Vermelho */
            color: #fff; /* Texto Branco */
            margin-top: 0; 
        }
        
        /* Sobrescrever a linha do bootstrap para ficar clara no fundo vermelho */
        hr.my-4 { border-color: rgba(255,255,255,0.2) !important; }
        
        footer h5 { color: #fff; font-weight: 700; text-transform: uppercase; font-size: 1rem; margin-bottom: 20px; }
        
        footer a { 
            color: #fff; /* Links Brancos */
            text-decoration: none; 
            transition: 0.3s;
            display: block;
            margin-bottom: 5px;
        }
        
        footer a:hover { 
            color: rgba(255,255,255,0.8); /* Hover branco com transparência */
            padding-left: 5px; 
            text-decoration: underline; /* Underline para feedback visual */
        }
        
        .social-icons a {
            display: inline-flex; width: 35px; height: 35px;
            background: rgba(255,255,255,0.2); /* Fundo branco transparente */
            color: #fff;
            border-radius: 50%; align-items: center; justify-content: center;
            margin-right: 8px; transition: 0.3s;
        }
        .social-icons a:hover { 
            background: #fff; 
            color: var(--primary-color); /* Ícone fica vermelho no hover */
            padding-left: 0; 
        }
        
        /* Ícones de pagamento para ficarem claros no fundo vermelho */
        footer .bi-credit-card, footer .bi-paypal, footer .bi-qr-code {
            color: rgba(255,255,255,0.8) !important;
        }

                .floated-chat-btn,
                .floated-chat-w {
                    z-index: 9999;
                    position: fixed;
                    right: 10px
                }
        
                .button-chat-btn,
                .floated-chat-btn {
                    font-size: 1.00rem;
                    cursor: pointer;
                    color: #fff
                }
        
                .button-chat-btn,
                .floated-chat-w .chat-controls .chat-extra a:hover {
                    text-decoration: none
                }
        
                .floated-chat-btn {
                    bottom: 20px;
                    background: #00a884;
                    box-shadow: 0 2px 20px 0 rgb(0 168 132 / 77%);
                    border-radius: 75px;
                    padding: 12px 20px;
                    display: -webkit-box;
                    display: flex;
                    -webkit-box-align: center;
                    align-items: center;
                    vertical-align: middle;
                    -webkit-transition: .2s;
                    transition: .2s;
                    height: 50px
                }
        
                .floated-chat-btn i {
                    vertical-align: middle;
                    display: inline-block;
                    font-size: 24px
                }
        
                .button-chat-btn span,
                .floated-chat-btn span {
                    vertical-align: middle;
                    display: inline-block;
                    font-weight: 600;
                    margin-right: 15px
                }
        
                .floated-chat-btn i+span {
                    margin-left: 15px
                }
        
                .floated-chat-btn:hover {
                    -webkit-transform: scale(1.05);
                    transform: scale(1.05);
                    background-color: #00a884;
                    box-shadow: 0 2px 30px 0 rgba(0 168 132 / .8)
                }
        
                .floated-chat-w {
                    bottom: 70px;
                    visibility: hidden;
                    opacity: 0;
                    -webkit-transform: translateY(-20px);
                    transform: translateY(-20px);
                    -webkit-transition: .3s;
                    transition: .3s
                }
        
                .floated-chat-w.active {
                    visibility: visible;
                    opacity: 1;
                    -webkit-transform: translateY(0);
                    transform: translateY(0)
                }
        
                .floated-chat-w .floated-chat-i {
                    background-color: #fff;
                    box-shadow: 0 2px 40px 0 rgb(0 168 132 / 25%);
                    border-radius: 10px;
                    width: 380px;
                    position: relative
                }
        
                .floated-chat-w .floated-chat-i .chat-close {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    color: rgba(0, 0, 0, .8);
                    font-size: 10px;
                    cursor: pointer
                }
        
                .floated-chat-w .chat-head {
                    padding: 20px;
                    border-bottom: 1px solid rgba(0, 0, 0, .05);
                    background: #00a884;
                    border-radius: 10px 10px 0 0
                }
        
                .floated-chat-w .chat-head .user-w {
                    display: -webkit-box;
                    display: flex;
                    -webkit-box-align: center;
                    align-items: center;
                    -webkit-box-pack: justify;
                    justify-content: space-between
                }
        
                .floated-chat-w .chat-head .user-w .user-avatar-w {
                    width: 50px
                }
        
                .floated-chat-w .chat-head .user-w .user-avatar-w .user-avatar {
                    border-radius: 40px;
                    overflow: hidden;
                    background: #fff
                }
        
                .floated-chat-w .chat-head .user-w .user-avatar-w .user-avatar img {
                    max-width: 100%;
                    height: auto
                }
        
                .floated-chat-w .chat-head .user-w.with-status .user-avatar-w {
                    position: relative
                }
        
                .floated-chat-w .chat-head .user-w.with-status .user-avatar-w:before {
                    content: "";
                    width: 10px;
                    height: 10px;
                    position: absolute;
                    top: 2px;
                    right: 2px;
                    border-radius: 10px;
                    box-shadow: 0 0 0 3px #fff
                }
        
                .floated-chat-w .chat-head .user-w.with-status.status-green .user-avatar-w:before {
                    background-color: #24b314
                }
        
                .floated-chat-w .chat-head .user-w.with-status.status-red .user-avatar-w:before {
                    background-color: #e65252
                }
        
                .floated-chat-w .chat-head .user-w .user-name {
                    padding-left: 20px;
                    -webkit-box-flex: 1;
                    flex: 1;
                    text-align: left
                }
        
                .floated-chat-w .chat-head .user-w .user-title {
                    margin-bottom: 2px;
                    color: #fff;
                    margin-top: 7px
                }
        
                .floated-chat-w .chat-head .user-w .user-role {
                    font-weight: 500;
                    font-size: .81rem;
                    color: #fff
                }
        
                .floated-chat-w .chat-head .user-w .user-action {
                    width: 50px;
                    color: #f1f1f1;
                    font-size: 18px
                }
        
                .floated-chat-w .chat-messages {
                    padding: 20px;
                    height: 430px;
                    position: relative;
                    overflow-y: auto
                }
        
                ::-webkit-scrollbar {
                    width: 4px
                }
        
                ::-webkit-scrollbar-track {
                    background-color: rgba(218, 218, 218, 0)
                }
        
                ::-webkit-scrollbar-thumb {
                    box-shadow: inset 0 0 30px rgba(0 168 132)
                }
        
                .floated-chat-w .chat-messages .message {
                    margin-bottom: 12px;
                    text-align: left
                }
        
                .floated-chat-w .chat-messages .message .message-content {
                    color: rgb(0 0 0);
                    padding: 10px 20px;
                    background-color: #eee;
                    border-radius: 20px 20px 20px 0;
                    max-width: 90%;
                    display: inline-block;
                    text-align: left;
                    opacity: 1;
                    font-family: verdana !important;
                    font-size: 14px
                }
        
                .message-content strong {
                    font-weight: 700
                }
        
                .floated-chat-w .chat-messages .message.self {
                    text-align: right
                }
        
                .floated-chat-w .chat-messages .message.self .message-content {
                    border-radius: 20px 20px 0;
                    background-color: #d9fdd3;
                    color: #000
                }
        
                .floated-chat-w .chat-messages .date-break {
                    text-align: center;
                    margin-bottom: 10px;
                    color: rgb(0 0 0 / 55%);
                    font-family: verdana;
                    font-size: 12px
                }
        
                .floated-chat-w .chat-controls {
                    padding: 9px 10px 10px;
                    display: inline-block;
                    width: 95%
                }
        
                .floated-chat-w .chat-controls div.inputs {
                    padding: 10px;
                    display: inline-block;
                    width: 95%;
                    border: 1px solid #00a884;
                    border-radius: 50px;
                    margin: 0 7px 5px
                }
        
                .floated-chat-w .chat-controls .message-input {
                    border: none !important;
                    background-color: #fff !important;
                    padding: 10px !important;
                    width: 88% !important;
                    float: left !important;
                    font-size: 15px !important;
                    box-shadow: none !important;
                    margin-bottom: 0 !important;
                    font-family: verdana
                }
        
                .floated-chat-w .chat-controls .message-input:focus {
                    outline: 0
                }
        
                .floated-chat-w .chat-controls select.message-select {
                    border: none !important;
                    background-color: #fff !important;
                    padding: 6px !important;
                    width: 98% !important;
                    float: left !important;
                    font-size: 15px !important;
                    box-shadow: none !important;
                    margin-bottom: 0 !important;
                    font-family: verdana;
                    font-weight: 600;
                }
        
                .floated-chat-w .chat-controls .chat-extra {
                    text-align: left;
                    padding-left: 0;
                    float: left;
                    width: 10%;
                    height: 38px
                }
        
                .floated-chat-w .chat-controls .chat-extra a {
                    display: inline-block;
                    margin-left: 10px;
                    font-size: 16px;
                    position: relative
                }
        
                .floated-chat-w .chat-controls .chat-extra a .extra-tooltip {
                    background-color: rgba(0, 0, 0, .9);
                    color: #fff;
                    font-weight: 500;
                    font-size: .63rem;
                    text-transform: uppercase;
                    padding: 2px 7px;
                    border-radius: 4px;
                    position: absolute;
                    top: -20px;
                    left: 50%;
                    -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
                    white-space: nowrap;
                    display: none
                }
        
                .floated-chat-w .chat-controls .chat-extra a:hover .extra-tooltip {
                    display: block
                }
        
                .floated-chat-w .chat-controls .chat-extra input[type=button] {
                    background: var(--wpr-bg-e4baa0f1-3133-48e9-bfa8-ba92b35df579) 0 0/contain #00a884 !important;
                    border: none !important;
                    text-indent: -99999px !important;
                    width: 20px !important;
                    height: 20px !important;
                    padding: 18px !important;
                    cursor: pointer !important;
                    border-radius: 100px !important
                }
        
                .buttons {
                    display: inline-block;
                    padding: 10px 5px
                }
        
                .button-chat-btn {
                    background: #00a884;
                    box-shadow: 0 2px 20px 0 rgb(0 168 132 / 77%);
                    border-radius: 75px;
                    padding: 12px 20px;
                    transition: .2s;
                    display: inline-grid;
                    margin: 10px
                }
        
                .button-chat-btn:hover {
                    -webkit-transform: scale(1.05);
                    transform: scale(1.05);
                    background-color: #00a884;
                    box-shadow: 0 2px 30px 0 rgba(0 168 132 / .8);
                    color: #fff
                }
        
                a.button-chat-btn.whatsapp_format {
                    margin: 10px 0;
                    min-width: 250px;
                    display: inline-block
                }
        
                a.button-chat-btn.whatsapp_format img {
                    float: left;
                    margin-top: 4px;
                    margin-left: 8px
                }
        
                @media only screen and (max-width:380px) {
                    .floated-chat-w .floated-chat-i {
                        width: 100%;
                        height: 100%
                    }
        
                    .floated-chat-w {
                        bottom: 0;
                        top: 0;
                        right: 0;
                        left: 0;
                        z-index: 999999999
                    }
        
                    .floated-chat-w .chat-controls {
                        position: fixed;
                        bottom: 0;
                        background: #fff;
                        left: 0
                    }
        
                    .floated-chat-w .chat-messages {
                        padding: 20px;
                        height: calc(100% - 35%);
                        position: relative;
                        overflow-y: auto
                    }
        
                    .floated-chat-w .chat-controls .message-input {
                        width: 84%
                    }
                }
        
                @media only screen and (max-width:280px) {
                    .floated-chat-w .chat-controls .message-input {
                        width: 80%
                    }
                }
