/* -------------------- BOTÕES ------------------------ */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 15px 0;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.tagline {
    color: var(--accent-color);
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* -------------------- SECTIONS ------------------------ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--accent-color);
    margin: 15px auto;
}
/* -------------------- GRID + LAYOUT ------------------------ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.row-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.col-text, .col-img { width: 50%;}

.reverse {
    flex-direction: row-reverse;
}

/* -------------------- CARDS------------------------ */
.card {
    position: relative;
    padding: 20px;
    border-radius: 18px;
    backdrop-filter: blur(16px) saturate(160%);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: 0.35s ease;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.03)
    );
    border-radius: inherit;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/* IMAGE */
.card .card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card .card-img img {
    width: 80%;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* TEXT */
.card-info {
    text-align: center;
}

.card-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.card-info p {
    color: var(--text-muted);
    opacity: 0.85;
    font-size: 0.9rem;
}

/* -------------------- IMAGENS E LISTAS ------------------------ */
.about-img {
    width: 120%;
    object-fit: cover;
    opacity: 0.9;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .row-flex {
        flex-direction: column;
        gap: 20px;
    }

    .col-text, .col-img { width: 100%;}

    .divider {
        margin: 0, auto;
    }
}
