/* RESET DE ESTILOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #0B2545; /* Azul Escuro (Autoridade/Concursos) */
    --accent-color: #F4A261;  /* Dourado/Laranja (Chama atenção) */
    --success-color: #2A9D8F; /* Verde (Compra) */
    --text-color: #333333;
    --light-bg: #F8F9FA;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content max-width {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #e76f51;
}

/* VITRINE DE PRODUTOS */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eef2f5;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #E76F51;
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
}

.product-image {
	background-color: #eef2f5;
    height: 320px; /* Aumentei um pouco para destacar bem a capa do Gamma */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Garante que a imagem não saia das bordas arredondadas */
}

/* ADICIONE ESTE BLOCO LOGO ABAIXO: */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    display: block; /* Força o navegador a renderizar como bloco */
}

/* Se usar imagens do Gamma, remova o icon e coloque a tag img abaixo */
.placeholder-icon {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: var(--success-color);
}

.price-container {
    margin-top: auto;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    display: block;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--success-color);
}

.btn-buy {
    display: block;
    text-align: center;
    background-color: var(--success-color);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.2s;
}

.btn-buy:hover {
    background-color: #218376;
}

/* SEÇÃO DE GARANTIA */
.warranty-section {
    background-color: #eef2f5;
    padding: 40px 0;
    margin-top: 40px;
}

.warranty-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
}

.warranty-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.warranty-container h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* FOOTER */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

/* RESPONSIVIDADE (Para celulares) */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .warranty-container { flex-direction: column; text-align: center; }
}

/* SEÇÃO DE DEPOIMENTOS */
.testimonials-section {
    padding: 80px 0;
    background-color: #f0f4f8; /* Tom levemente diferente para quebrar o fundo */
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Card Central Destacado */
.highlighted-testimonial {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(244, 162, 97, 0.15);
    transform: scale(1.03);
}
.highlighted-testimonial:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-test {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
}

.stars {
    color: #ffb703; /* Cor dourada para as estrelas */
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #e2e8f0;
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.user-info h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: bold;
}

.user-info span {
    font-size: 0.8rem;
    color: #718096;
    display: block;
}

/* Ajuste responsivo para o card destacado em telas menores */
@media (max-width: 900px) {
    .highlighted-testimonial {
        transform: none;
    }
    .highlighted-testimonial:hover {
        transform: translateY(-5px);
    }
}