/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primaria: #4f46e5;
    --secundaria: #7c3aed;
    --escuro: #0f172a;
    --maisescuro: #0a0f1c;
    --claro: #e2e8f0;
    --vidro: rgba(255, 255, 255, 0.1);
    --preto: #000000;
}

/* Corpo da página */
body {
   background: url("img/fundo12.png") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* Navbar */
.navegacao {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: fixed;
    z-index: 100;
    padding: 0.70rem;
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 12px 0;
}

.menu-link {
    text-decoration: none;
    color: var(--claro);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.menu-link::after{
    content: '';
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: linear-gradient(90deg, var(--primaria), var(--secundaria));
    transition: width 0.5s ease;
}

.menu-link:hover::after {
    width: 100%;
}

/* Título da página */
h1 {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 2.5rem;
}

.text-1 {
    text-align: center;
    font-size: 28px;
    margin: 90px 0 20px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 140, 255, 0.8);
}

/* Container dos cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 50px 50px 50px;
    justify-items: center;
}

/* Card individual */
.card {
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.card:hover {
    background: rgba(30, 30, 30, 0.9);
    transform: translateY(-5px);
}

.card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.card h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(20, 20, 20, 0.9);
    color: #fff;
    border-top: 2px solid #FFD700;
}

.p {
    text-align: center;         /* Centraliza o texto */
    max-width: 600px;           /* Limita a largura */
    margin: 0 auto 20px auto;   /* Centraliza e adiciona espaçamento abaixo */
    font-size: 18px;            /* Tamanho da fonte */
    font-weight: 500;           /* Deixa mais destacado */
    line-height: 1.5;           /* Espaçamento entre linhas */
    color: #fff; 
}

.feedback-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.feedback-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    width: 250px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.feedback-card:hover {
    transform: scale(1.05);
}

.feedback-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.feedback-card p {
    color: #fff;
    font-size: 14px;
}
