:root {
    --whatsapp-green: #25D366;
    --whatsapp-dark-green: #128C7E;
    --text-color: #333;
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Gabarito', 'Segoe UI', Roboto, sans-serif;
}

#whatsapp-button {
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#whatsapp-button:hover {
    background-color: var(--whatsapp-dark-green);
    transform: scale(1.1);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    max-height: 70vh; 
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex; 
    flex-direction: column;
    overflow: hidden; 
}

.whatsapp-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-header {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.whatsapp-body {
    padding: 15px;
    overflow-y: auto; 
    flex-grow: 1; 
}

.whatsapp-body::-webkit-scrollbar {
    width: 6px;
}
.whatsapp-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.whatsapp-body p {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.whatsapp-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatsapp-options li {
    margin-bottom: 10px;
}

.whatsapp-options a {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    gap: 10px;
}

.whatsapp-options a:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-popup {
        width: 280px;
        right: -10px;
        max-height: 60vh; 
    }
}

.whatsapp-logo {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: contain;
}


.whatsapp-options {
	list-style: none;
	padding: 0;
	margin: 0;
}

.whatsapp-options li {
	margin-bottom: 10px;
}

.whatsapp-options a {
	display: flex;
	align-items: center;
	padding: 12px;
	background-color: #f8f8f8;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.2s ease;
	gap: 10px;
}

.whatsapp-options a:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}

.whatsapp-options i {
	color: var(--whatsapp-green);
	font-size: 24px;
	flex-shrink: 0;
}

.whatsapp-options strong {
	display: block;
	font-size: 14px;
	margin-bottom: 3px;
}

.whatsapp-options span {
	font-size: 12px;
	color: #666;
	display: block;
}