/* Variáveis de cores */
:root {
    --primary-color: #003c54;
    --secondary-color: #8a8c92;
    --white-color: #fefffe;
    --text-color: #333;
    --light-color: #fefffe;
    --gray-color: #f5f5f5;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estrutura básica */
body {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header e Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar {
    background: transparent;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    height: 120px;
    transition: all 0.3s ease;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.navbar-logo {
    height: 120px;
    transition: all 0.3s ease; /* Adicionando transição suave à logo */
}

/* Ajuste para quando a navbar estiver com scroll */
.navbar.scrolled {
    height: 100px;
}

.navbar.scrolled .navbar-logo {
    height: 80px;
}

/* Menu Links */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 1.2rem !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
    width: 100%;
    margin-top: auto;
}

.footer-logo {
    height: 140px;
    margin-bottom: 1rem;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Utilitários */
.container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }

    .hero-section {
        padding: 100px 0 100px;
        margin-top: 80px;
    }

    .navbar-logo {
        height: 60px;
    }

    .navbar.scrolled {
        height: 60px;
    }

    .navbar.scrolled .navbar-logo {
        height: 60px !important;
    }

    .footer {
        text-align: center;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .body {
        padding-top: 0 !important;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes de utilidade */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Estilos para seções específicas */
.section {
    padding: 80px 0;
    width: 100%;
}

/* Hero Section - Otimização de performance */
.hero-section {
    padding: 180px 0 180px;
    margin-top: 120px;
    background: linear-gradient(
        rgba(0, 60, 84, 0.4),
        rgba(0, 60, 84, 0.5)
    ), url('../img/mesa.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    width: 100%;
    position: relative;
    will-change: transform; /* Otimiza a renderização */
    -webkit-transform: translateZ(0); /* Força aceleração de hardware */
    transform: translateZ(0);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h2 {
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 100px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }
}

/* Areas Section */
.areas-section {
    padding: 80px 0;
    background: var(--white-color);
}

.areas-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.areas-section .title-divider {
    margin: 20px auto 50px;
}

.area-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.area-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(0, 60, 84, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.area-card:hover i {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotateY(360deg);
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.area-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    padding: 0 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    .areas-section {
        padding: 40px 0;
    }

    .area-card {
        margin-bottom: 25px;
    }

    .area-card:last-child {
        margin-bottom: 0;
    }

    .area-card p {
        text-align: justify;
        padding: 0 10px;
    }
}

/* Botões */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-primary {
        width: 100%;
        margin: 10px 0;
    }
}

/* Botões flutuantes */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: #25D366;
}

.top-btn {
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
}

.floating-btn i {
    font-size: 24px;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

/* Responsividade para os botões flutuantes */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn i {
        font-size: 20px;
    }
}

/* Adicione isto às suas regras CSS */
.footer i,
.floating-btn i {
    color: var(--white-color) !important;
}

/* Estilo do botão principal */
.btn-contact {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.btn-contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-contact:hover {
    color: #000;
    border-color: var(--white-color);
}

.btn-contact, 
.btn-contact:hover {
    transition: color 0.3s ease;
}

.btn-contact:hover:before {
    width: 100%;
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .btn-contact {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Social Links */
.navbar-social-links,
.footer-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
    line-height: 0; /* Remove espaço extra vertical */
}

.social-link {
    color: var(--white-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex; /* Mudado para inline-flex */
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    padding: 0; /* Remove padding interno */
    line-height: 0; /* Remove espaço extra vertical */
    text-decoration: none;
}

.social-link i {
    display: flex; /* Garante que o ícone ocupe todo o espaço */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0; /* Remove margens */
    padding: 0; /* Remove padding */
}

.social-link:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social-links .social-link {
    background: transparent;
    border: 1px solid var(--white-color);
}

.footer-social-links .social-link:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .navbar-social-links {
        margin: 15px 0;
        justify-content: center;
        gap: 10px; /* Reduz o espaço entre os ícones no mobile */
    }
}

/* Separadores */
.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0;
    display: block;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 40px;
}

/* Seção Sobre */
.about-section {
    padding: 80px 0;
    background: linear-gradient(
        rgba(0, 60, 84, 0.85),
        rgba(0, 60, 84, 0.80)
    ), url('../img/marmore.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    margin-top: 0;
}

.about-section .container {
    max-width: 1400px;
}

/* Ajustando as cores do texto para melhor contraste */
.about-section .section-title {
    color: var(--white-color);
}

.about-section .title-divider {
    background: var(--white-color);
}

.about-section .about-content p {
    color: var(--white-color);
    opacity: 0.9;
}

/* Ajustando o container da imagem */
.about-image {
    position: relative;
    height: 100%;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    height: 600px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 40px;
}

.about-content {
    padding: 0;
}

.section-title {
    text-align: left;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px 0 40px 0; /* Alinhado à esquerda */
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 30px;
}
/* Responsividade */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image img {
        height: auto;
        width: 100%;
        max-height: 400px;
    }

    .about-content-wrapper {
        padding: 20px 0;
    }

    .section-title {
        text-align: center;
    }

    .title-divider {
        margin: 20px auto 40px;
    }

    .about-content p {
        text-align: justify;
    }
}

/* Layout da seção de áreas */
.areas-container {
    position: relative;
    margin-bottom: 40px;
    min-height: 800px; /* Altura mínima para garantir espaço para os cards e imagem */
}

.areas-cards {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-right: 40px;
}

.areas-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.areas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
}

.areas-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--white-color) 0%,
        transparent 20%
    );
}

/* Ajuste dos cards */
.areas-cards .row {
    margin: 0 -15px;
}

.areas-cards .col-md-6 {
    padding: 0 20px;
    margin-bottom: 40px;
}

/* Responsividade */
@media (max-width: 992px) {
    .areas-container {
        min-height: auto;
    }

    .areas-cards {
        width: 100%;
        padding-right: 0;
    }

    .areas-image {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }

    .areas-image::after {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            var(--white-color) 100%
        );
    }
}

/* Botão escuro para fundo claro */
.btn-contact.dark {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-contact.dark:before {
    background: var(--primary-color);
}

.btn-contact.dark:hover {
    color: var(--white-color);
}

/* Seção Diferenciais */
.diferenciais-section {
    padding: 80px 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.75), /* Opacidade no background */
        rgba(0, 0, 0, 0.75)
    ), url('../img/law.webp');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
}

.diferenciais-section .section-title {
    text-align: center;
    color: var(--white-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.diferenciais-section .title-divider {
    width: 80px;
    height: 3px;
    background: var(--white-color);
    margin: 20px auto 50px; /* Centralizado e com mais espaço abaixo */
}

/* Mantendo o resto do CSS dos cards igual */
.diferenciais-section .row {
    margin: -20px;
}

.diferenciais-section .col-lg-4 {
    padding: 20px;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0; /* Remove margem padrão */
}

.diferencial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.diferencial-card i {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.diferencial-card:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: rotateY(360deg);
}

.diferencial-card h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.diferencial-card p {
    color: var(--white-color);
    opacity: 0.9;
    margin: 0;
    text-align: justify;
    padding: 0 15px;
}

/* Responsividade */
@media (max-width: 992px) {
    .areas-container {
        flex-direction: column;
    }

    .areas-cards {
        max-width: 100%;
    }

    .areas-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .areas-image {
        min-height: 300px;
    }

    .area-card,
    .diferencial-card {
        margin-bottom: 25px;
    }

    .area-card p,
    .diferencial-card p {
        text-align: justify;
        padding: 0 10px;
    }

    .diferenciais-section .row {
        margin: -15px; /* Reduz o espaçamento em telas menores */
    }

    .diferenciais-section .col-lg-4 {
        padding: 15px;
    }

    .diferencial-card {
        margin: 0;
    }
}

.diferenciais-section .btn-contact {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    margin-top: 20px;
}

.diferenciais-section .btn-contact:hover {
    color: var(--primary-color);
}

.diferenciais-section .btn-contact:before {
    background: var(--white-color);
}

/* Seção Contato */
.contato-section {
    padding: 80px 0;
    background: var(--white-color);
}

.contato-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contato-form {
    flex: 1;
    padding-right: 40px;
}

.contato-map {
    flex: 1;
    position: relative;
}

.contato-section .section-title,
.contato-map .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.contato-section .title-divider,
.contato-map .title-divider {
    margin: 20px 0 30px 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-footer {
    position: static; /* Removido o position absolute */
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.map-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.route-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Centraliza horizontalmente */
}

.route-btn:hover {
    background: var(--primary-color);
    opacity: 0.95;
    transform: translateY(-2px);
    color: var(--white-color);
}

.route-btn i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-map .section-title,
    .contato-section .section-title {
        text-align: center;
    }

    .contato-section .title-divider,
    .contato-map .title-divider {
        margin: 20px auto 30px;
    }

    .map-footer {
        width: 90%;
        bottom: 20px;
    }

    .route-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Estilo do Formulário */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 60, 84, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-container {
        flex-direction: column;
    }

    .contato-form {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contato-section {
        padding: 40px 0;
    }

    .map-container {
        min-height: 300px;
    }
}

/* Otimização do scroll suave */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Collapse */
.navbar-collapse {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 80px;
        right: 0;
        width: 280px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        background: var(--primary-color);
        padding: 1rem;
        transform: translateX(100%);
        z-index: 1000;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    /* Alinhamento do texto à direita */
    .navbar-nav {
        text-align: right;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Ajuste dos ícones sociais */
    .navbar-social-links {
        justify-content: flex-end;
        margin-top: 2rem;
    }
}

/* Correção do espaço em branco em mobile */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 80px; /* Ajustado para a altura do navbar em mobile */
    }

    header {
        height: 80px; /* Altura fixa para o header em mobile */
    }

    .navbar {
        height: 80px;
    }

    .navbar.scrolled {
        height: 80px;
    }
}

/* Ajuste dos botões de envio e rota */
.form-actions,
.map-actions {
    margin-top: 30px;
}

/* Instagram Feed */
.instagram-section {
    padding: 80px 0;
    background: var(--white-color);
}

/* Sobrescreve a regra geral do section-title */
.instagram-section .section-title {
    text-align: center !important; /* Força o alinhamento central */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary-color);
}

.instagram-section .title-divider {
    margin: 20px auto 40px;
    background: var(--primary-color);
}

.instagram-section .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.instagram-section .btn-contact.dark {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .instagram-section .section-title {
        font-size: 2rem;
        text-align: center !important;
    }
    
    .instagram-section .btn-container {
        margin-top: 30px;
    }
}

/* Estilo do toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
    outline: none;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 1);
}

/* Estilos para ícones de ação nas tabelas administrativas */
.table td a {
    text-decoration: none !important;
    font-size: 1.1rem;
    padding: 0.3rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.table td a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

/* Melhorando cores dos ícones de ação */
.text-warning {
    color: #e67e22 !important; /* Laranja mais visível em vez de amarelo */
}

.text-warning:hover {
    color: #d35400 !important;
}

/* Melhorando a cor dos dias restantes */
.text-warning.dias-restantes {
    color: #f39c12 !important;
    font-weight: bold;
}

/* Melhorando badges de prioridade */
.badge.badge-urgent {
    background-color: #e74c3c !important;
    color: white !important;
}

.badge.badge-high {
    background-color: #f39c12 !important;
    color: white !important;
}

.badge.badge-medium {
    background-color: #3498db !important;
    color: white !important;
}

.badge.badge-low {
    background-color: #95a5a6 !important;
    color: white !important;
}