/* index.css */

/* Reset básico para garantir consistência entre navegadores */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #d3d3d3; /* Fundo cinza claro */
}

/* --- Banner de Cabeçalho --- */
.banner {
    background-image: url('videos/BANNER.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.banner-content {
    position: relative;
    z-index: 1;
}

/* --- Seção de Depoimentos --- */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.testimonials-header .icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-header .icon svg {
    color: #000080; /* Azul escuro para o ícone */
    stroke-width: 2.5;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap; /* Permite que os cards quebrem a linha */
    justify-content: center; /* Centraliza os cards */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Estilo do Card Individual --- */

.testimonial-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    text-align: center;
}

.testimonial-card-wrapper h3 {
    color: #000080; /* Azul para o nome da pessoa */
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out;
    width: 100%; /* Ocupa a largura total do wrapper */
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 196px; 
    overflow: hidden;
    position: relative;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: bold; /* Adicionado negrito */
}

.card-body p:last-of-type {
    margin-bottom: 15px;
    line-height: 1.3;
}

.company-link {
    color: #000080;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}

.btn-action {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px 12px;
    background-color: #000080; /* Azul escuro para o botão */
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-action i {
    margin-left: 8px;
    font-size: 1.1rem;
}

.btn-action:hover {
    background-color: #000066;
}

/* --- Seção de Documentos Entregues --- */
.documents-section {
    background-image: url('videos/plus650.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-top: 60px;
    position: relative;
    background-color: #000080; /* Fundo azul escuro */
}

.documents-content {
    position: relative;
    z-index: 1;
    color: #ffffff; /* Texto branco */
}

.documents-content .plus-icon {
    font-size: 3rem;
    line-height: 1;
}

.documents-content .number {
    font-size: 4rem;
    line-height: 1;
}

.documents-content .title {
    font-size: 1.5rem;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .banner {
        height: 150px;
    }

    .testimonials {
        padding: 30px 10px;
    }

    .testimonials-header h2 {
        font-size: 1.5rem;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    
    .testimonial-card-wrapper {
        width: 90%;
    }

    .card-image {
        height: 180px;
    }

    .card-body {
        padding: 15px;
    }

    .card-body p {
        margin-bottom: 6px;
    }

    .documents-section {
        height: 150px;
    }

    .documents-content {
        color: #ffffff; /* Texto branco para celular */
    }

    .documents-content .plus-icon {
        font-size: 1.8rem;
    }

    .documents-content .number {
        font-size: 2.5rem;
    }

    .documents-content .title {
        font-size: 1.2rem;
    }

    .btn-action {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .btn-action i {
        font-size: 1rem;
    }
}