/* ========================= */
/* OBRAS PAGE - ESTRUTURA CATÁLOGO */
/* ========================= */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 30px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #9E7C53;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 0.8rem;
    color: #C9A961;
}

/* Catalog Section */
.catalog-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar de Filtros */
.catalog-sidebar {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-label {
    display: block;
    font-family: "titulo";
    font-size: 0.95rem;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-select-box,
.filter-input-box {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.filter-select-box {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A961' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.filter-input-box:focus,
.filter-select-box:focus {
    outline: none;
    border-color: #C9A961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    background: #fff;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: #C9A961;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #C9A961;
}

.results-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(201, 169, 97, 0.1));
    border-radius: 12px;
    border-left: 4px solid #C9A961;
}

.results-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.results-info strong {
    color: #C9A961;
    font-size: 1.2rem;
    font-weight: 700;
}

.clear-filters-btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: transparent;
    border: 2px solid #C9A961;
    border-radius: 8px;
    color: #C9A961;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.clear-filters-btn:hover {
    background: #C9A961;
    color: white;
}

/* Catalog Content */
.catalog-content {
    min-height: 500px;
}

.catalog-header {
    margin-bottom: 3rem;
}

.catalog-title {
    font-family: "titulo";
    font-size: 3rem;
    letter-spacing: 8px;
    color: #2b2b2b;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.catalog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C9A961, transparent);
}

/* Obras Grid */
.obras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* Obra Card Full */
.obra-card-full {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.obra-card-full.visible {
    opacity: 1;
    transform: translateY(0);
}

.obra-card-full:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(201, 169, 97, 0.2);
}

.obra-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #C9A961 0%, #b89440 100%);
}

.obra-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.obra-card-full:hover .obra-image {
    transform: scale(1.08);
}

.obra-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #b89440 50%, #9E7C53 100%);
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.7;
}

.obra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(43, 43, 43, 0.95) 0%,
        rgba(43, 43, 43, 0.6) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.obra-card-full:hover .obra-overlay {
    opacity: 1;
}

.overlay-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #C9A961;
    color: #C9A961;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-button:hover {
    background: #C9A961;
    color: white;
    gap: 18px;
}

.overlay-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.overlay-button:hover .overlay-icon {
    transform: rotate(90deg);
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.status-badge.status-disponivel {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.status-badge.status-vendido {
    background: linear-gradient(135deg, #888, #666);
    color: white;
}

.status-badge.status-reservado {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

/* Obra Content */
.obra-content {
    padding: 2rem;
}

.obra-titulo {
    font-family: "titulo";
    font-size: 1.6rem;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.obra-card-full:hover .obra-titulo {
    color: #C9A961;
}

.obra-artista {
    margin-bottom: 1.2rem;
}

.obra-artista a {
    color: #C9A961;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.obra-artista a:hover {
    color: #9E7C53;
    text-decoration: underline;
}

.obra-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C9A961, transparent);
    margin-bottom: 1.2rem;
    transition: width 0.5s ease;
}

.obra-card-full:hover .obra-divider {
    width: 80px;
}

.obra-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 10px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 0.9rem;
    color: #2b2b2b;
    font-weight: 500;
}

.obra-preco {
    font-family: "titulo";
    font-size: 1.6rem;
    color: #C9A961;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(201, 169, 97, 0.1));
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.obra-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.obra-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #b89440, #9E7C53);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #C9A961;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    color: #C9A961;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #C9A961;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.modal-image-section {
    position: relative;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961, #b89440);
    border-radius: 12px;
}

.modal-status {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.modal-info-section {
    display: flex;
    flex-direction: column;
}

.modal-titulo {
    font-family: "titulo";
    font-size: 2.5rem;
    color: #2b2b2b;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.modal-artista a {
    color: #C9A961;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-artista a:hover {
    color: #9E7C53;
    text-decoration: underline;
}

.modal-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C9A961, transparent);
    margin: 1.5rem 0;
}

.modal-descricao {
    margin-bottom: 2rem;
}

.modal-descricao h3,
.modal-detalhes h3 {
    font-family: "titulo";
    font-size: 1.2rem;
    color: #2b2b2b;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.modal-descricao p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.detalhes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detalhe-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
    border-left: 3px solid #C9A961;
}

.detalhe-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detalhe-value {
    font-size: 1.05rem;
    color: #2b2b2b;
    font-weight: 500;
}

.modal-preco {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.15));
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.preco-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preco-value {
    font-family: "titulo";
    font-size: 2.2rem;
    color: #C9A961;
    font-weight: 700;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.modal-btn-primary,
.modal-btn-secondary {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.modal-btn-secondary {
    background: transparent;
    color: #C9A961;
    border: 2px solid #C9A961;
}

.modal-btn-secondary:hover {
    background: #C9A961;
    color: white;
}

/* No Results / Empty State */
.no-results,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.no-results p,
.empty-state p {
    color: #666;
    font-size: 1.1rem;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: "titulo";
    font-size: 2rem;
    color: #2b2b2b;
    margin-bottom: 1rem;
}

.btn-primary {
    margin-top: 30px;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #C9A961, #b89440);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

/* ========================= */
/* BOTÕES FLUTUANTES */
/* ========================= */

/* Botão do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9990;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #0e6d60);
}

.whatsapp-icon {
    font-size: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(43, 43, 43, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-left: 6px solid rgba(43, 43, 43, 0.95);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Botão Administrativo */
.admin-access-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C9A961, #b89440);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    z-index: 9990;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse-admin 3s infinite;
}

.admin-access-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.6);
    background: linear-gradient(135deg, #b89440, #9E7C53);
}

.admin-icon {
    font-size: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.admin-access-btn:hover .admin-icon {
    transform: rotate(30deg);
}

.admin-tooltip {
    position: absolute;
    left: 60px;
    background: rgba(43, 43, 43, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.admin-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border-right: 6px solid rgba(43, 43, 43, 0.95);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.admin-access-btn:hover .admin-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-admin {
    0%, 90%, 100% {
        box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    }
    95% {
        box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 250px 1fr;
        gap: 35px;
    }
    
    .catalog-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .obras-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .catalog-sidebar {
        position: static;
    }
    
    .catalog-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .obras-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .obra-image-wrapper {
        height: 300px;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .modal-titulo {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Ajustes para botões flutuantes em mobile */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .admin-access-btn {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-tooltip,
    .admin-tooltip {
        display: none; /* Esconde tooltips em mobile para evitar sobreposição */
    }
}

@media (max-width: 600px) {
    .breadcrumb-section {
        padding: 20px 20px 15px;
    }
    
    .catalog-section {
        padding: 40px 20px;
    }
    
    .catalog-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    
    .obra-titulo {
        font-size: 1.4rem;
    }
    
    .obra-content {
        padding: 1.5rem;
    }
    
    .obra-info-grid {
        grid-template-columns: 1fr;
    }
    
    .obra-preco {
        font-size: 1.4rem;
    }
    
    .detalhes-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Ajustes finos para botões flutuantes em telas muito pequenas */
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .admin-access-btn {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-icon {
        font-size: 28px;
    }
    
    .admin-icon {
        font-size: 20px;
    }
}