/* Sala Mineira do Empreendedor - Estilos Específicos */

/* Page Hero */
.page-hero {
    padding: 140px 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 110, 180, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.breadcrumb i {
    font-size: 0.8rem;
}

.hero-content-page {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(4, 110, 180, 0.3);
}

.hero-content-page h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
}

/* About SME Section */
.about-sme-section {
    padding: 6rem 0;
    background-color: white;
}

.about-sme-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-sme-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
}

.about-sme-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-sme-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Services SME Section */
.services-sme-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background-color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(4, 110, 180, 0.1);
    border: 1px solid rgba(4, 110, 180, 0.1);
    transition: all 0.3s ease;
    height: 100%; /* Força todos os cards a terem a mesma altura */
    min-height: 280px; /* Altura mínima para manter consistência */
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 110, 180, 0.15);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(4, 110, 180, 0.3);
    margin-bottom: 1.5rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.location-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
    width: 100%;
}

.location-info p i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-info a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-info a:hover {
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-page h1 {
        font-size: 2rem;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-sme-content h2 {
        font-size: 2rem;
    }

    .about-sme-content p {
        font-size: 1rem;
    }

    .location-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .location-icon {
        margin: 0 auto;
    }

    .location-info p {
        justify-content: center;
    }
}

/* Back to Home Button */
.back-to-home-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(4, 110, 180, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid white;
}

.back-to-home-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(4, 110, 180, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .back-to-home-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 1.2rem;
    }
}
