@import url('./notifications.css');

:root {
    --yellow-gold: #ffb612;
    /* destaque 10% */
    --blue-gray: #B4D3E6;
    /* uso 10% */
    --blue-vivid: #90C3FF;
    /* destaque 5% */
    --lead-black: #232527;
    /* base 45% */
    --off-white: #F4F6F7;
    /* estrutura 25% */
    --light-gray: #D6DBDE;
    /* apoio 15% */
    --green-whatsapp: #25d366; 
    /* verde whatsapp */
    --container-max: 1200px;
    /* Hero / hero image customization (mutável) */
    --hero-font-family: "Kodchasan Extra Leve", sans-serif;
    --hero-title-size: 2.8rem;
    --hero-sub-size: 1.05rem;
    --hero-color: var(--lead-black);
    --hero-bg-image: url("/assets/background-flower-light.jpg");
    --hero-bg-image-extra: url("/assets/background-flower-extra-resized.PNG");
    --hero-bg-position: center right;
    --hero-bg-size: cover;
    --hero-gradient-min-alpha: 0.0;
}

/* Reset and base */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--hero-font-family);
    background: var(--off-white);
    color: var(--lead-black);
    min-height: 100vh;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    body {
        overflow-x: hidden;
    }
}

main,
section,
article,
aside,
header,
footer,
nav,
div {
    min-width: 0;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

button,
input,
select,
textarea {
    max-width: 100%;
    font: inherit;
}

main {
    flex: 1 0 auto;
}

header-back-home {
    display: block;
    min-height: 79px;
}

footer-main {
    display: block;
    margin-top: auto;
    min-height: 69px;
}

/* Header Styles */
.header {
    background-color: var(--lead-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Garantir contraste dos links no header escuro */
.header .nav-menu a,
.header .nav-menu a:visited {
    color: var(--off-white);
}

.header .nav-menu a:hover,
.header .nav-menu a:focus {
    color: var(--off-white);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
}

.header .nav-menu a:focus-visible {
    box-shadow: 0 0 0 3px rgba(144, 195, 255, 0.14);
    border-radius: 6px;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    padding-right: 1rem;
    min-width: 0;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: min(220px, 56vw);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.35rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.nav-menu {
    margin-left: auto;
    flex-shrink: 0;
    min-width: 0;
}

.nav-menu ul {
    font-family: "Kodchasan Extra Leve", sans-serif;
    list-style: none;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: var(--off-white);
    text-decoration: none;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 1.07rem;
    transition: background 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.nav-menu a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(144, 195, 255, 0.4);
}

.nav-menu button {
    font-family: "Kodchasan Medium", sans-serif;
}

.btn-criar {
    background: linear-gradient(90deg, var(--blue-vivid), var(--blue-gray)) !important;
    color: var(--lead-black) !important;
    border: none;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.9rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-wrap: anywhere;
}

.btn-criar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 195, 255, 0.4);
}

.btn-create-unique {
    background: linear-gradient(90deg, var(--blue-vivid), var(--blue-gray)) !important;
    color: var(--lead-black) !important;
    border: none;
    padding: 0.75rem 2rem !important;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1.05rem;
    font-family: "Kodchasan Medium", sans-serif;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
}

.btn-create-unique:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 195, 255, 0.4);
}

.nav-menu button:hover {
    background: linear-gradient(90deg, var(--blue-gray), var(--blue-vivid));
}

/* Hero / Home */
.home-section {
    padding: 3rem 1rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    min-height: 65vh;
    /* fundo com imagem + degradê branco à esquerda (nunca totalmente transparente) */
    background-image: linear-gradient(to right,
            rgba(214, 219, 222, 0.8) 0%,
            rgba(214, 219, 222, 0.1) 60%,
            rgba(214, 219, 222, 0) 85%,
            rgba(214, 219, 222, 0) 100%),
        var(--hero-bg-image-extra);
    background-position: var(--hero-bg-position);
    background-size: var(--hero-bg-size);
    background-repeat: no-repeat;
}

/* container dentro do hero para alinhar conteúdo sobre o fundo */
.home-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    min-width: 0;
}

.hero-text {
    width: min(65%, 720px);
    padding: 2rem 1rem;
    font-family: var(--hero-font-family);
    color: var(--hero-color);
    min-width: 0;
}

.hero-title {
    font-size: var(--hero-title-size);
    line-height: 1.05;
    margin: 0 0 0.75rem 0;
    overflow-wrap: anywhere;
}

.hero-sub {
    font-size: var(--hero-sub-size);
    margin: 0;
    color: var(--lead-black);
}

/* Services Section */
.services-section {
    padding: 3rem 1rem;
    background: linear-gradient(180deg, rgba(52, 152, 219, 0.02), rgba(44, 62, 80, 0.02));
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--lead-black);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.section-sub {
    text-align: center;
    color: var(--lead-black);
    margin-bottom: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.service-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: #fff;
}

.service-title {
    font-size: 1.05rem;
    color: var(--lead-black);
    overflow-wrap: anywhere;
}

.service-desc {
    color: var(--lead-black);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.service-features {
    list-style: disc;
    margin-left: 1rem;
    color: var(--lead-black);
}

/* ======================================================*/

/* Footer placeholder spacing */
main .container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .nav-menu > ul {
        gap: 0.5rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .header-container {
        padding: 0.75rem 1rem;
    }

    .nav-menu > ul {
        gap: 0.4rem;
    }

    .nav-menu a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .btn-criar {
        padding: 0.45rem 0.8rem !important;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 0;
    }

    .logo {
        padding-right: 0;
    }

    .nav-menu {
        width: 100%;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu > ul {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        background: var(--lead-black);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li {
        width: 100%;
        white-space: normal;
    }

    .nav-menu a {
        display: block;
        padding: 0.8rem 1.5rem;
        border-radius: 0;
        font-size: 0.95rem;
    }

    /*.nav-menu a:hover {
        background: rgba(144, 195, 255, 0.2);
    }*/

    .btn-criar {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem !important;
        margin-top: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-section {
        padding: 2rem 0.75rem;
        background-position: center top;
        background-size: cover;
    }

    .home-section .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text {
        width: 100%;
        padding: 1rem 0;
    }

    .btn-create-unique {
        width: 100%;
    }
}

@media (max-width: 576px) {
    header-back-home {
        min-height: 69px;
    }

    footer-main {
        min-height: 64px;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0.75rem 0.75rem;
        position: relative;
    }

    .logo {
        flex: 0;
    }

    .hamburger-menu {
        position: absolute;
        right: 0.75rem;
    }

    .logo-img {
        height: 45px;
    }

    .hamburger-menu {
        padding: 0.35rem;
    }

    .hamburger-menu span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu > ul {
        padding: 0;
    }

    .nav-menu a {
        padding: 0.7rem 1.25rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .btn-criar {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    header-back-home {
        min-height: 66px;
    }

    footer-main {
        min-height: 60px;
    }

    .header-container {
        padding: 0.65rem 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .hamburger-menu span {
        width: 20px;
    }

    .nav-menu a {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    header-back-home {
        min-height: 61px;
    }

    .hero-title {
        font-size: 1.05rem;
    }

    .service-desc {
        font-size: 0.75rem;
    }

    .nav-menu a {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .logo-img {
        height: 35px;
    }
}

/* Small aesthetic helpers */
.container {
    padding: 0 1rem;
    width: 100%;
}

/* Works Section - Como Funciona */
.works-section {
    padding: 4rem 1rem;
    background-color: transparent;
    /* mesmo fundo da home-section com imagem + degradê */
    background-image: linear-gradient(to right,
            rgba(244, 246, 247, 0.8) 0%,
            rgba(244, 246, 247, 0.8) 60%,
            rgba(244, 246, 247, 0.7) 85%,
            rgba(244, 246, 247, 0.7) 100%),
        var(--hero-bg-image-extra);
    background-position: var(--hero-bg-position);
    background-size: var(--hero-bg-size);
    background-repeat: no-repeat;
}

.works-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Grid responsivo para os passos */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Card de passo */
.step-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--blue-gray) 100%);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    min-width: 0;
}

.step-card:hover {
    border-color: var(--blue-vivid);
    box-shadow: 0 12px 32px rgba(144, 195, 255, 0.2);
    transform: translateY(-8px);
}

/* Número do passo */
.step-number {
    font-family: "Kodchasan SemiBold", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue-vivid), var(--blue-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Título do passo */
.step-card {
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    opacity: 0;
    min-width: 0;
}

/* Quando o card receber a classe 'visible' ele irá 'pular' (bounce) para a tela 
.step-card.visible {
    /* animação desativada - use 'retire' para manter comentado */
/*
    animation: bounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    40% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
    }

    65% {
        transform: translateY(6px) scale(0.995);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
*/


.exemple-section {
    padding: 4rem 1rem;
    background-color: transparent;
    /* mesmo fundo da home-section com imagem + degradê */
    background-image: linear-gradient(to right,
            rgba(244, 246, 247, 0.8) 0%,
            rgba(244, 246, 247, 0.8) 60%,
            rgba(244, 246, 247, 0.7) 85%,
            rgba(244, 246, 247, 0.7) 100%),
        var(--hero-bg-image-extra);
    background-position: var(--hero-bg-position);
    background-size: var(--hero-bg-size);
    background-repeat: no-repeat;
}

.depoimentos-section {
    padding: 4rem 1rem;
    background-color: transparent;
    /* mesmo fundo da home-section com imagem + degradê */
    background-image: linear-gradient(to right,
            rgba(244, 246, 247, 0.8) 0%,
            rgba(244, 246, 247, 0.8) 60%,
            rgba(244, 246, 247, 0.7) 85%,
            rgba(244, 246, 247, 0.7) 100%),
        var(--hero-bg-image-extra);
    background-position: var(--hero-bg-position);
    background-size: var(--hero-bg-size);
    background-repeat: no-repeat;
}

.testimonials-grid {
    width: min(100%, 920px);
    margin: 0 auto;
}

#testimonialsRoot {
    min-height: 330px;
}

.testimonials-carousel {
    display: grid;
    gap: 1.15rem;
    animation: testimonials-fade-in 520ms ease both;
}

.testimonials-viewport {
    overflow: hidden;
    border-radius: 24px;
}

.testimonials-track {
    display: flex;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0.25rem;
}

.testimonial-card {
    min-height: 300px;
    padding: 1.45rem;
    border-radius: 24px;
    border: 1px solid rgba(35, 37, 39, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 54px rgba(35, 37, 39, 0.1);
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.testimonial-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-avatar-image,
.testimonial-avatar-fallback {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    flex-shrink: 0;
}

.testimonial-avatar-image {
    object-fit: cover;
    border: 1px solid rgba(35, 37, 39, 0.08);
}

.testimonial-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22303f, #4f83b6);
    color: var(--off-white);
    font-family: "Kodchasan Bold", sans-serif;
    letter-spacing: 0;
}

.testimonial-customer {
    display: grid;
    gap: 0.2rem;
    margin-right: auto;
    min-width: 0;
}

.testimonial-customer strong {
    color: #1f2937;
    font-family: "Kodchasan Bold", sans-serif;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.testimonial-customer span {
    color: #4f83b6;
    font-size: 0.9rem;
}

.testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: rgba(100, 116, 139, 0.34);
    font-size: 1.25rem;
    letter-spacing: 0;
}

.testimonial-star.is-active {
    color: #d79a0c;
}

.testimonial-card h3 {
    margin: 0;
    color: #1f2937;
    font-family: "Kodchasan SemiBold", sans-serif;
    font-size: 1.32rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.testimonial-card p {
    margin: 0;
    color: #516172;
    line-height: 1.75;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.testimonials-arrow,
.testimonials-dot {
    border: 1px solid rgba(35, 37, 39, 0.1);
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.testimonials-arrow {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 16px;
    color: #22303f;
    font-size: 1.65rem;
    line-height: 1;
}

.testimonials-arrow:hover,
.testimonials-arrow:focus-visible {
    background: #22303f;
    color: var(--off-white);
    border-color: transparent;
    transform: translateY(-1px);
    outline: none;
}

.testimonials-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.testimonials-dot {
    width: 0.72rem;
    height: 0.72rem;
    padding: 0;
    border-radius: 999px;
}

.testimonials-dot.is-active {
    width: 1.65rem;
    background: #22303f;
    border-color: #22303f;
}

.testimonials-empty-state,
.testimonials-loading {
    min-height: 260px;
    border-radius: 24px;
    border: 1px solid rgba(35, 37, 39, 0.08);
    background: rgba(255, 255, 255, 0.84);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.4rem;
    padding: 1.5rem;
    text-align: center;
    color: #516172;
}

.testimonials-empty-state strong {
    color: #1f2937;
    font-family: "Kodchasan SemiBold", sans-serif;
}

.testimonials-empty-state p {
    margin: 0;
    max-width: 28rem;
    line-height: 1.6;
}

@keyframes testimonials-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background-color: var(--lead-black);
    color: var(--off-white);
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

.footer-icon {
    height: 24px;
    width: auto;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .step-card {
        padding: 1.75rem 1.25rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Responsividade para mobile landscape e tablets pequenos */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-number {
        font-size: 1.75rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .works-section {
        padding: 3rem 1rem;
    }

    .depoimentos-section {
        padding: 3rem 1rem;
    }

    .testimonial-card {
        min-height: 320px;
        padding: 1.2rem;
    }

    .testimonial-card-head {
        align-items: flex-start;
    }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .works-section {
        padding: 2.5rem 1rem;
    }

    .depoimentos-section {
        padding: 2.5rem 1rem;
    }

    #testimonialsRoot {
        min-height: 360px;
    }

    .testimonials-viewport,
    .testimonial-card,
    .testimonials-empty-state,
    .testimonials-loading {
        border-radius: 18px;
    }

    .testimonial-card {
        min-height: 340px;
        padding: 1rem;
    }

    .testimonial-avatar-image,
    .testimonial-avatar-fallback {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .testimonial-card h3 {
        font-size: 1.12rem;
    }

    .testimonial-card p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .testimonials-controls {
        gap: 0.55rem;
    }

    .testimonials-arrow {
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 14px;
    }
}

/* Fonte Borel para títulos */
@font-face {
    font-family: 'Borel';
    src: url('../assets/fonts/Borel-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kodchasan Regular";
    src: url('../assets/fonts/Kodchasan-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kodchasan Extra Leve";
    src: url('../assets/fonts/Kodchasan-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kodchasan Medium";
    src: url('../assets/fonts/Kodchasan-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kodchasan SemiBold";
    src: url('../assets/fonts/Kodchasan-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kodchasan Bold";
    src: url('../assets/fonts/Kodchasan-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
