.elementor-kit-13{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-kadence1:#4285f4;--e-global-color-kadence2:#185abc;--e-global-color-kadence3:#000000;--e-global-color-kadence4:#2d3e50;--e-global-color-kadence5:#414141;--e-global-color-kadence6:#656565;--e-global-color-kadence7:#f2eee2;--e-global-color-kadence8:#f7fafc;--e-global-color-kadence9:#ffffff;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-13.el-is-editing{--global-palette1:#4285f4;--global-palette2:#185abc;--global-palette3:#000000;--global-palette4:#2d3e50;--global-palette5:#414141;--global-palette6:#656565;--global-palette7:#f2eee2;--global-palette8:#f7fafc;--global-palette9:#ffffff;}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:700px;}.e-con{--container-max-width:700px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.testimonial-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 280px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-content {
    padding: 10px;
}

.testimonial-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-name {
    font-weight: bold;
    color: #333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #4CAF50;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;  /* Permite que os cartões se ajustem para a linha seguinte se necessário */
    justify-content: space-between;  /* Garantir que os cartões fiquem bem distribuídos */
    gap: 20px;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 30%;  /* Ajuste para que três cartões caibam em uma linha */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    /* Garantir que os cartões não fiquem muito espaçados */
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-img {
    width: 80px;  /* Tamanho da imagem */
    height: 80px; /* Mantém a altura proporcional */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-content {
    padding: 10px;
}

.testimonial-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-name {
    font-weight: bold;
    color: #333;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .testimonial-card {
        width: 45%;  /* Para telas menores, os cartões ocupam 45% da largura */
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 100%;  /* Para dispositivos móveis, os cartões ocuparão toda a largura */
    }
}/* End custom CSS */