:root {
    --primary-color: #343A40;
    --secondary-color: #343A40;
    --accent-color: #3498db;
    --text-color: #ecf0f1;
    --hover-color: #2980b9;
    --dropdown-bg: #fff;
    --dropdown-text: #333;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.content.full-width {
    margin-left: 0;
}

.breadcrumb {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: bold;
    transition: color var(--transition-speed);
}

.breadcrumb a:hover {
    color: var(--hover-color);
}

.breadcrumb li {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: ">";
    margin: 0 8px;
    color: var(--text-color);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    text-align: center;
}

.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para o modal de planos */
.plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    z-index: 9999;
}

/* Conteúdo do modal */
.plan-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    /* Largura do modal, 80% da tela */
    max-width: 500px;
    /* Largura máxima de 500px */
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Fechar o modal */
.close-plan-modal-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Título do modal */
.plan-modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Estilo para os botões dos planos */
.plan-option {
    margin: 15px 0;
}

.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-button:hover {
    transform: scale(1.05);
    background-color: #f1f1f1;
}

.plan-button i {
    font-size: 30px;
    margin-right: 10px;
}

.plan-name {
    font-size: 18px;
    font-weight: bold;
    flex-grow: 1;
}

.plan-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

/* Adicionando cores e ícones para cada plano */
.plan-button[data-plano="basico"] i {
    color: #FFC107;
}

.plan-button[data-plano="medio"] i {
    color: #28a745;
}

.plan-button[data-plano="profissional"] i {
    color: #007bff;
}

.modaldeletaranuncio {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    /* Inicialmente invisível */
    animation: fadeIn 0.3s forwards;
}

.modaldeletaranuncio-conteudo {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modaldeletaranuncio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modaldeletaranuncio-icone {
    font-size: 30px;
    color: #FF5722;
    margin-right: 15px;
}

.modaldeletaranuncio-titulo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.modaldeletaranuncio-botoes {
    display: flex;
    justify-content: space-around;
}

.modaldeletaranuncio-cancelar,
.modaldeletaranuncio-confirmar {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modaldeletaranuncio-cancelar {
    background-color: #ccc;
    color: #333;
    width: 120px;
}

.modaldeletaranuncio-confirmar {
    background-color: #FF5722;
    color: white;
    width: 120px;
    transition: background-color 0.3s;
}

.modaldeletaranuncio-cancelar i,
.modaldeletaranuncio-confirmar i {
    margin-right: 10px;
}

.modaldeletaranuncio-confirmar:hover {
    background-color: #e64a19;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Para esconder o modal com animação ao fechá-lo */
.modaldeletaranuncio.fechar {
    animation: fadeOut 0.3s forwards;
}