/* --- CONFIGURAÇÕES GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none;
}

/* --- VARIÁVEIS DE CORES --- */
:root {
    --purple-dark: #1a1459;
    --purple-light: #3c357a;
    --gray-text: #666;
    --border-color: #eaeaea;
}

.navbar {
    background-color: var(--purple-light);
}

.nav-item a {
    color: #dfdeef;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item a.active {
    color: white;
    border-bottom: 2px solid #ffaa00;
}

.nav-item .btn-top-lock {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 15px;
    border-radius: 4px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav-item .btn-top-lock i {
    margin-right: 5px;
    color: #ffaa00;
}

/* .header {
    position: relative;
    height: 550px;
    background-image: url(imagens/fachada.jpeg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 80px;
} */

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 20, 89, 0.9) 0%, rgba(26, 20, 89, 0.2) 100%);
} */

.header-content {
    position: relative;
    color: white;
    max-width: 600px;
    z-index: 2;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.header-content .accent-line {
    width: 40px;
    height: 3px;
    background-color: #ffaa00;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-purple {
    background-color: var(--purple-light);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-purple:hover {
    background-color: var(--purple-dark);
    text-decoration: none;
    color: white;
}


.quick-nav-container {
    max-width: 1200px;
    margin: -40px auto 50px auto;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.quick-nav {
    background-color: white;
    display: flex;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.quick-item {
    flex: 1;
    text-align: center;
    padding: 25px 10px;
    border-right: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s;
}

.quick-item i {
    font-size: 28px;
    color: var(--purple-light);
    margin-bottom: 12px;
}

.quick-item p {
    font-size: 11px;
    font-weight: 700;
    color:  var(--purple-light);
    line-height: 1.3;
}

.about-section {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color:  var(--purple-light);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-outline {
    border: 2px solid  var(--purple-light);
    color: var(--purple-light);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--purple-light);    
    color: white;
    text-decoration: none;
}

.header-content {
    position: relative;
    color: white;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    font-size: 13px;
    color: var(--purple-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.breadcrumb a {
    color: var(--purple-light);
    transition: color 0.3s;
}

.breadcrumb span {
    color: var(--purple-dark);
    font-weight: 700;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h2 {
    font-size: 28px;
    color: var(--purple-dark);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.5;
}

.space-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.space-img {
    width: 100%;
    height: 160px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.space-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.space-content {
    position: relative;
    padding: 45px 20px 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.space-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--purple-light);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.space-icon i {
    color: #ffffff;
    font-size: 24px;
}

.space-content h3 {
    font-size: 15px;
    color: var(--purple-dark);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.btn-solid {
    background-color: var(--purple-light);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s;
    margin-top: auto;
}

.btn-solid:hover {
    background-color: var(--purple-dark);
    color: #ffffff;
    text-decoration: none;
}

/* --- GRID SECTIONS & CARDS --- */
.grid-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card-img-wrapper {
    position: relative;
    height: 180px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3c357a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-icon i {
    color: white;
    font-size: 18px;
}

.card-body {
    padding: 40px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 14px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 36px; /* MantÃ©m os botÃµes alinhados */
}

.btn-card {
    background-color: var(--purple-light);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 25px;
    border-radius: 4px;
    transition: background 0.3s;
    width: 100%;
    max-width: 120px;
}

.btn-card:hover {
    background-color: var(--purple-dark);
    color: #ffffff;
    text-decoration: none;
}

.footer-banner-container {
    padding: 0 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-banner {
    background: linear-gradient(135deg, #241d4f 0%, #3c357a 100%);
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-text .dev-by {
    font-size: 11px;
    color: #aaa5df;
    display: block;
    margin-bottom: 2px;
}

.footer-text h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-text .orange-text {
    color: #f39c12;
}

.footer-text p {
    font-size: 12px;
    color: #ccc8f1;
    margin-top: 2px;
}

.btn-footer {
    border: 1px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s, color 0.3s;
}

.btn-footer:hover {
    background-color: var(--purple-dark);
    color: #ffffff;
    text-decoration: none;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-nav {
        flex-wrap: wrap;
    }
    .quick-item {
        flex: unset;
        width: 33.33%;
        border-bottom: 1px solid #f0f0f0;
    }
    .about-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .header {
        padding-left: 20px;
        height: 400px;
    }
    .header-content h1 {
        font-size: 32px;
    }
    .quick-item {
        width: 50%;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .footer-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
}