/* css/simples.css - VERSÃO FINAL "TALENTO" */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0077b6;
    --primary-light: #e0f2fe;
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-light: #94a3b8;
    --bg-page: #f8fafc;
    --white: #ffffff;
    --radius: 16px;
    --shadow-soft: 0 4px 20px -5px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 25px -5px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-page);
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 60px;
}

a { text-decoration: none; transition: var(--transition); }

.container-empresa {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

/* --- HERO SECTION --- */
.empresa-hero {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid #f1f5f9;
}

/* BREADCRUMB (NAVEGAÇÃO) ESTILOSA */
.breadcrumb-container {
    display: inline-block;
    background-color: #f1f5f9;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}
.breadcrumb-container a {
    color: var(--text-body);
    font-weight: 600;
}
.breadcrumb-container a:hover {
    color: var(--primary);
}
.breadcrumb-separator {
    margin: 0 8px;
    color: #cbd5e1;
    font-size: 0.7rem;
}

/* LOGO */
.hero-logo {
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 30px; /* Quadrado arredondado moderno (Squircle) */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #f1f5f9;
}

.hero-info h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- EFEITO LER MAIS (CORRIGIDO E BONITO) --- */
.descricao-wrapper {
    position: relative;
    max-width: 650px;
    margin: 10px auto 0;
}

.texto-descricao {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* Classe aplicada quando está fechado */
.texto-descricao.collapsed {
    max-height: 90px; /* Altura de umas 3 ou 4 linhas */
    /* Efeito de Gradiente Transparente */
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.btn-ler-mais {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.btn-ler-mais:hover {
    background-color: var(--primary);
    color: white;
}
.btn-ler-mais i { transition: transform 0.3s; }
.btn-ler-mais.open i { transform: rotate(180deg); }


/* --- GRID DE CONTEÚDO --- */
.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 25px;
    border: 1px solid #f1f5f9;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-title i { color: var(--primary); }

/* --- LINKS DE CONTATO ESTILO "LINKTREE" --- */
.lista-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    background-color: #f8fafc;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.link-btn i {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Cores específicas das redes */
.link-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white; border-color: transparent;
}
.link-btn.facebook:hover {
    background-color: #1877f2; color: white; border-color: #1877f2;
}
.link-btn.site:hover {
    background-color: var(--text-dark); color: white; border-color: var(--text-dark);
}
.link-btn.telefone {
    background-color: #fff; border-color: #e2e8f0; cursor: default;
}
.link-btn.telefone:hover { transform: none; box-shadow: none; }


/* --- MAPA --- */
.endereco-simples {
    color: var(--text-body);
    margin-bottom: 15px;
    display: block;
}
.mapa-frame {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: 0;
    background-color: #eee;
}
.btn-rota {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.btn-rota:hover { text-decoration: underline; }

/* --- BANNER UPGRADE --- */
.upgrade-box {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-soft);
}
.upgrade-box h3 { margin: 0 0 10px; color: #fbbf24; }
.upgrade-box p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 20px; }
.btn-upgrade {
    background-color: #fbbf24; color: #0f172a;
    padding: 10px 25px; border-radius: 50px; font-weight: 700;
    display: inline-block; box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}
.btn-upgrade:hover { transform: scale(1.05); background-color: #f59e0b; }

/* MOBILE */
@media (max-width: 600px) {
    .empresa-hero { padding: 30px 20px; }
    .hero-logo { width: 100px; height: 100px; }
    .breadcrumb-container { font-size: 0.8rem; padding: 5px 12px; }
}