* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff3e6 50%, #ffd9b8 100%);
    color: #2c3e50;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Topo com logo e navegação */
.top-nav {
    background: linear-gradient(135deg, #ff4d4d 0%, #ffffff 50%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 3px solid #cd5c5c;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 330px;
    height: 100px;
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
    margin-left: -80px !important;
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;    
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 22px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-link:hover {
    color: #ff4d4d;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.highlight {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(205, 92, 92, 0.3);
}

.nav-link.highlight:after {
    display: none;
}

.nav-link.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 92, 92, 0.4);
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 50%, #990000 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header:before {
    content: '🧹✨🧼';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.header:after {
    content: '🧽🧴🧺';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    position: relative;
}

.header p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    flex: 1;
}

/* Barra de busca */
.search-section {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255, 77, 77, 0.15);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.search-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-title:before {
    content: '🔍';
    font-size: 30px;
}

.search-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    min-width: 280px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ffe0e0;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
    background: #fff9f9;
}

.search-input:focus {
    outline: none;
    border-color: #ff4d4d;
    box-shadow: 0 0 0 4px rgba(205, 92, 92, 0.1);
    background: white;
}

.search-select {
    padding: 15px 25px;
    border: 2px solid #ffe0e0;
    border-radius: 50px;
    font-size: 16px;
    background: #fff9f9;
    cursor: pointer;
    min-width: 220px;
    color: #2c3e50;
    font-weight: 500;
}

.search-select:focus {
    outline: none;
    border-color: #ff4d4d;
    box-shadow: 0 0 0 4px rgba(205, 92, 92, 0.1);
}

.search-button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(205, 92, 92, 0.3);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 92, 92, 0.4);
}

.clear-button {
    padding: 15px 30px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ffe0e0;
}

.clear-button:hover {
    background: #f5f5f5;
    border-color: #cd5c5c;
}

/* Resultados da busca */
.results-info {
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(205, 92, 92, 0.2);
}

.results-count {
    font-size: 18px;
    color: #2c3e50;
}

.results-count strong {
    color: #ff4d4d;
    font-size: 24px;
    margin-right: 5px;
}

.active-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tag {
    background: #ffe6e6;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ff4d4d;
    color: #2c3e50;
}

.filter-tag span {
    font-weight: 600;
    color: #ff4d4d;
}

.remove-filter {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s;
}

.remove-filter:hover {
    transform: scale(1.2);
    color: #c0392b;
}

/* Grid de produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 30px;
}

/* Card de produto */
.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.15);
    transition: all 0.3s;
    position: relative;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.25);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(205, 92, 92, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
    background: white;
    position: relative;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(205, 92, 92, 0.3);
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.3;
}

.product-description {
    color: #5d6d7e;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #ffe0e0;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    color: #ff4d4d;
    line-height: 1;
}

.product-price small {
    font-size: 14px;
    font-weight: normal;
    color: #7f8c8d;
    margin-left: 5px;
}

.buy-button {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(205, 92, 92, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(205, 92, 92, 0.4);
}

/* Mensagem quando não há produtos */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}

.no-products h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-products p {
    color: #5d6d7e;
    margin-bottom: 20px;
    font-size: 18px;
}

.no-products .suggestion {
    color: #cd5c5c;
    font-weight: 600;
    font-size: 18px;
}

/* Botão Mais Detalhes - Versão Simples */
.product-details-button {
    margin: 10px 0 0 0;
}

.details-button {
    background: #f0f0f0;
    color: #2c3e50;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.details-button:hover {
    background: #e0e0e0;
    border-color: #4da6ff;
}

.details-button span {
    font-size: 12px;
}

/* Botão Mais Detalhes */
.details-button {
    background: #e9ecef;
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
}

.details-button:hover {
    background: #dee2e6;
}

/* Footer */
.footer {
    background: #1e2b3a;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 5px solid #ff4d4d;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff4d4d;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff4d4d;
    border-radius: 3px;
}

.footer-section p {
    color: #b0c4de;
    line-height: 1.8;
    font-size: 15px;
}

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

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

.footer-section ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ff4d4d;
    padding-left: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0c4de;
}

.contact-item span {
    font-size: 20px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ff4d4d;
    transform: translateY(-5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #b0c4de;
    font-size: 14px;
}

.footer-bottom strong {
    color: #ff4d4d;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 5px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsividade */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        text-align: center;
        position: relative;
    }
    
    .logo-area {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
        border-bottom: 3px solid #cd5c5c;
        z-index: 999;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: #cd5c5c;
        padding: 5px 15px;
        border: 2px solid #cd5c5c;
        border-radius: 10px;
        background: white;
        transition: all 0.3s;
    }
    
    .menu-toggle:hover {
        background: #cd5c5c;
        color: white;
    }
    
    .header h1 {
        font-size: 36px;
    }
    
    .header p {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input-group,
    .search-select,
    .search-button,
    .clear-button {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .results-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .product-price {
        font-size: 26px;
    }
    
    .buy-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Efeitos especiais */
.product-card:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #cd5c5c, #b22222, #cd5c5c);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover:before {
    opacity: 0.3;
}

/* Ícones de limpeza */
.cleaning-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.1;
    pointer-events: none;
}

/* Estilo para o quadro do WhatsApp */
.whatsapp-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.whatsapp-popup.active {
    display: flex;
}

.whatsapp-quadro {
    background: white;
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-quadro h2 {
    color: #075e54;
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-quadro h2 i {
    font-size: 30px;
}

.produto-info {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.produto-info p {
    margin: 8px 0;
    font-size: 16px;
}

.produto-info strong {
    color: #333;
    min-width: 100px;
    display: inline-block;
}

.whatsapp-input {
    margin-bottom: 20px;
}

.whatsapp-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.whatsapp-input textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.whatsapp-input textarea:focus {
    border-color: #25D366;
    outline: none;
}

.whatsapp-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-cancelar {
    background: #f44336;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-cancelar:hover {
    background: #d32f2f;
}

.btn-adicionar {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}

.btn-adicionar:hover {
    background: #45a049;
}

/* Estilo para o botão comprar */
.buy-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* MODIFICAÇÃO: Estilos do Modal de Produto */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #ff4d4d;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.modal-image-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.modal-category {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-description {
    color: #5d6d7e;
    font-size: 16px;
    line-height: 1.8;
    margin: 10px 0;
}

.modal-price {
    font-size: 36px;
    font-weight: 800;
    color: #ff4d4d;
    margin: 10px 0;
}

.modal-price small {
    font-size: 16px;
    font-weight: normal;
    color: #7f8c8d;
}

.modal-buy-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.modal-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    
    .modal-image-container {
        min-height: 250px;
    }
    
    .modal-info h2 {
        font-size: 22px;
    }
    
    .modal-price {
        font-size: 28px;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-buy-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}
/* Melhorar espaçamento da descrição no modal */
.modal-description {
    color: #5d6d7e;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

.modal-description br {
    margin-bottom: 8px;
    display: block;
    content: "";
}