/* BASE */
:root {
    --card: #ffffff;
    --text: #000;
    --muted: #0f172a;
    --border: #e5e7eb;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,.06);
}

html,
body {
    background: var(--bg);
}

.container {
    padding: 22px;
    max-width: 480px;
    width: 100%;
}

/* CARD */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    margin-top: 10px;
}

.card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
}

/* ABOUT */
.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    background-color: #FFF;
    border: 1px solid #EEE;
    box-shadow: 0 4px 6px rgba(197, 196, 196, 0.15);
    padding: 3px;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    margin: 22px 0 10px;
    line-height: 28px;
    color: #333;
}

.location {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.categories {
    margin: 18px 0;
}

.category {
    background-color: #f0edea;
    color: var(--muted);
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 10px;
}

.about {
    color: var(--muted);
    font-size: 16px;
    line-height: normal;
}

/* ADDRESS */
.address p {
    font-size: 14px;
    color: var(--muted);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.dominio_site {
    color: var(--muted);
}

.dominio_site a {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

/* TAGS */
.tag {
    background-color: #f0edea;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--muted);
    display: block;
    margin-bottom: 5px;
}

/* REDES SOCIAIS */
.rodape-redes {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.rodape-redes a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* LINKS */
.vertical-links a {
    display: block;
    text-decoration: none;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
}

.more-links {
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-weight: 800;
}

/* CONTACT */
/* .contact-intro {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: normal;
} */

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.actions a {
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: var(--primary);
    flex: 1 1 auto;
    min-width: 120px;
}

/* .actions_block {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
} */

.actions_block a {
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: var(--primary);
    display: block;
    margin: 10px 0;
}


/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: var(--card);
    padding: 22px;
    border-radius: var(--radius);
    max-width: 430px;
    width: 90%;
}

.modal-content h3 {
    margin-bottom: 10px;
}

.modal-content a {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    text-decoration: none;
}

.close-modal {
    margin-top: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.modal-x {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 18px;
    cursor: pointer;
    color: #6b7280;
    font-weight: 700;
}

.modal-x:hover {
    color: #111827;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .container {
        width: 100%;
    }
}