:root {
    --color-primary: #0d6efd;
    --color-white: #ffffff;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --transition: 0.3s ease;
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --light-green: #a8e6cf;
    /* Ajuste rápido do tamanho dos banners dos parceiros (desktop) */
    --partner-banner-width: 800px;  /* largura */
    --partner-banner-height: 390px; /* altura  */
}

/* =============================
   Top Bar
   ============================= */
.top-bar {
    background-color: #FF8C00;
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
}

.top-bar-info,
.top-bar-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.top-bar-info i,
.top-bar-social a {
    margin-right: var(--spacing-xs);
    color: var(--color-white);
    text-decoration: none;
    transition: opacity var(--transition);
}

.top-bar-social a:hover {
    opacity: 0.8;
}

/* Estilos existentes */
.card {
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}
.btn-edit {
    background-color: #0d6efd;
    color: white;
}
.btn-edit:hover {
    background-color: #0b5ed7;
    color: white;
}
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
}
.status-pago {
    background-color: #d4edda;
    color: #155724;
}
.status-pendente {
    background-color: #fff3cd;
    color: #856404;
}

/* Cores principais */
:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --light-green: #a8e6cf;
    --white: #ffffff;
}

/* Estilos do cabeçalho */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1040;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.8);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-box {
    width: 100%;
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #e9e9e9;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

.search-box input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(46,204,113,0.15);
    outline: none;
    background: #ffffff;
}

.search-box button {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 0 35px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.search-box button:hover {
    background: linear-gradient(135deg, var(--dark-green), #229954);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Melhorias na tipografia */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    line-height: 1.6;
}

/* Sidebar modernizada */
.sidebar {
    position: fixed;
    left: 0;
    top: 110px;
    bottom: 0;
    width: 250px;
    z-index: 1030;
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
    padding-top: 20px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.08);
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.8);
}

.sidebar h3 {
    color: var(--dark-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin: 0;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.sidebar ul li a:hover {
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.1), transparent);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    transform: translateX(5px);
}

.sidebar ul li a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* Footer Moderno BACKGROUD RODAPÉ*/
footer {
    background: linear-gradient(135deg, #FF8C00, #FF8E8E);
    color: var(--white);
    padding: 60px 20px 40px;
    margin-left: 250px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section {
    padding: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--light-green);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--light-green);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Conteúdo Principal */
.main-content {
    margin-left: 250px;
    padding: 150px 20px 80px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Ajuste do Banner */
.banner {
    position: relative;
    margin: 20px auto 40px;
    max-width: 385px; /* largura fixa */
    height: 165px; /* altura fixa */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.banner img {
    width: 100%;
    height: 165px; /* mesma altura do container */
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.banner:hover img {
    transform: scale(1.02);
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(39, 174, 96, 0.3));
    pointer-events: none;
}

/* Grid de Produtos Melhorado */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: start;
}

.produto-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    width: 100%;
    min-height: 370px;
    max-height: 420px;
    margin: 0 auto;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #3498db, #9b59b6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.produto-card:hover::before {
    opacity: 1;
}

.produto-card .produto-imagem {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.produto-card .produto-imagem img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    display: block;
    max-width: 200px;
    max-height: 200px;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.1);
}

.produto-info {
    padding: 15px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-card h3 {
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #2c3e50;
    line-height: 1.3;
    min-height: 2.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-card p {
    font-size: 0.88rem;
    color: #6c757d;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.1rem;
}

.produto-valor {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2ecc71;
    margin: 10px 0 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.produto-taxa {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 10px;
    font-weight: 500;
}

.btn-comprar {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-comprar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-comprar:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn-comprar:hover::before {
    left: 100%;
}

.btn-comprar:active {
    transform: translateY(0);
}

/* Badge de categoria */
.categoria-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(46, 204, 113, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Loading skeleton */
.produto-card.loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #FF8C00, #FF8E8E);
    color: var(--white);
    padding: 60px 20px 40px;
    margin-left: 250px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section {
    padding: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--light-green);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--light-green);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    	text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: white;
}

/* WhatsApp Flutuante - Estilo Fale Conosco */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #32CD32, #00FF7F);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
    transition: all 0.3s ease;
    z-index: 3000;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.6);
    background: linear-gradient(135deg, #00FF7F, #32CD32);
}

.whatsapp-float i {
    margin-right: 8px;
    font-size: 18px;
}

/* Status Online/Offline */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

.status-online {
    background-color: #00FF00;
    box-shadow: 0 0 6px rgba(0, 255, 0, 0.6);
}

.status-offline {
    background-color: #FF4444;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.6);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-size: 11px;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 2px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .produto-card .produto-imagem {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .produto-card .produto-imagem img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
    
    footer {
        margin-left: 0;
        padding: 40px 20px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        top: 40px;
        padding: 10px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        height: auto;
        transform: none;
        padding: 10px 0;
        box-shadow: none;
        border-right: none;
        display: block;
    }
    
    .sidebar h3 {
        text-align: center;
        margin: 0 0 15px 0;
        padding: 0 20px;
    }
    
    .sidebar ul {
        display: flex;
        overflow-x: auto;
        padding: 0 10px;
        flex-wrap: nowrap;
        gap: 5px;
    }
    
    .sidebar ul li {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .sidebar ul li a {
        padding: 10px 15px;
        border-radius: 20px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border: 1px solid #dee2e6;
    }
    
    .sidebar ul li a:hover {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
        transform: none;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 200px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 10px;
    }

    .produto-card {
        width: 100%;
        min-height: 320px;
        max-height: 380px;
    }
    
    .produto-card .produto-imagem {
        height: 113px;
        width: 115px;
        margin: 0 auto;
    }
    
    .produto-card .produto-imagem img {
        width: 115px;
        height: 113px;
        object-fit: cover;
        object-position: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
        min-width: 180px;
    }
    
    .whatsapp-float i {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .status-text {
        font-size: 10px;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }

    .main-header {
        top: 70px;
    }

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
        justify-content: center;
    }

    .main-content {
        padding-top: 220px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 8px;
    }

    .produto-card {
        width: 100%;
        max-width: 100%;
        min-height: 300px;
        max-height: 360px;
    }
    
    .produto-card .produto-imagem {
        height: 113px;
        width: 115px;
        margin: 0 auto;
    }
    
    .produto-card .produto-imagem img {
        width: 115px;
        height: 113px;
        object-fit: cover;
        object-position: center;
    }

    .footer-section {
        padding: 10px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .top-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
        padding: 0.7rem 0.2rem 0.4rem 0.2rem;
        font-size: 0.98rem;
        gap: 0.2rem;
    }
    .top-bar-info {
        flex-direction: column;
    align-items: center;
        gap: 0.1rem;
        width: 100%;
        margin-bottom: 0.2rem;
    }
    .top-bar-info span {
    justify-content: center;
        width: 100%;
        white-space: normal;
        word-break: break-word;
    }
    .top-bar-social {
        justify-content: center;
    width: 100%;
        margin-top: 0.2rem;
        gap: 1.2rem;
    }
    .top-bar-social a {
        font-size: 1.4em;
        padding: 4px 8px;
    }
}
/* Complemento: transformar o carrossel em slider (desliza esquerda→direita) */
.banner-carousel { overflow: hidden; margin-bottom: 20px; }
/* Exibição fixa: manter no fluxo para não ficar atrás dos produtos */
.banner-carousel {
    /* Ajuste automático: nunca passa de --partner-banner-width, nem de 92vw */
    width: clamp(360px, 80vw, var(--partner-banner-width));
    /* Mantém proporção 800x390 automaticamente (pode ajustar) */
    aspect-ratio: 800 / 390;
    height: auto;
    position: relative; /* necessário para sobrepor os slides sem sair do fluxo */
    margin: 0 auto; /* centraliza no main */
}
.banner-carousel > .banner-slide {
    position: absolute; /* sobrepõe os slides dentro do container */
    width: 100%;
    height: 100%;
    display: block;
}
.banner-carousel > .banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
/* Ajustes de responsividade específicos para banners (desktop/notebook) */
@media (min-width: 1600px) {
    .banner-carousel-container { max-width: 1200px; }
    .banner-carousel { max-width: 1200px; width: 100%; aspect-ratio: 16 / 6; }
}
@media (min-width: 1200px) and (max-width: 1599px) {
    .banner-carousel-container { max-width: 1100px; }
    .banner-carousel { max-width: 1100px; width: 100%; aspect-ratio: 16 / 6; }
}
@media (min-width: 1024px) and (max-width: 1199px) {
    .banner-carousel { width: min(1000px, 92vw); aspect-ratio: 16 / 7; }
}
@media (min-width: 1600px) {
    .banner-carousel { width: min(1280px, 92vw); aspect-ratio: 16 / 6; }
}
/* Override: centralização e largura do carrossel no desktop/notebook */
.banner-carousel-container {
    max-width: 1200px !important;
    width: calc(100% - 40px) !important; /* respeita padding lateral do conteúdo */
    margin: 0 auto 20px auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-carousel {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 6;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto !important;
}
.banner-carousel > .banner-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
@media (max-width: 1200px) {
    .banner-carousel { aspect-ratio: 16 / 7; }
}
/* Ajuste dedicado para telas ~1024x768 */
@media (min-width: 980px) and (max-width: 1100px) {
    .banner-carousel-container {
        max-width: 980px !important;
        width: calc(100% - 24px) !important;
        margin: 10px auto 20px auto !important;
    }
    .banner-carousel {
        aspect-ratio: 16 / 9; /* mais alto nesta resolução para não parecer achatado/cortado */
    }
}
/* Tamanho fixo solicitado para os 3 banners do carrossel */
.banner-carousel-container {
    width: 100% !important;
    max-width: 1195px !important;      /* mesma largura alvo dos banners */
    margin: 28px auto 18px auto !important; /* desce um pouco mais o carrossel */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-carousel {
    width: 100% !important;            /* ocupa toda a largura do container */
    height: 180px !important;          /* altura fixa desejada */
    aspect-ratio: auto !important; /* desativa proporção automática */
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto !important;
}
.banner-carousel > .banner-slide,
.banner-carousel > .banner-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}
/* Header: manter top-bar e main-header juntos e sem sobrepor o conteúdo */
.top-bar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
}
.main-header {
    position: sticky !important;
    top: 40px !important; /* altura aproximada da top-bar */
    z-index: 1040 !important;
}
/* Ajuste suave no espaçamento do carrossel quando header é sticky */
.banner-carousel-container { margin-top: 20px !important; }
/* Mantendo o botão do WhatsApp fixo com ajustes sutis (modelo) */
.whatsapp-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.whatsapp-contact:hover { opacity: 0.9; transform: scale(1.1); }
.whatsapp-text {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
}


