:root {
    /* Lovable Dark Theme Palette */
    --background-color: #0B0B15; /* Deep Dark Blue */
    --card-color: #1A1F2C; /* Lighter Dark Blue */
    --primary-color: #0ea5e9; 
    --primary-gradient: linear-gradient(90deg,#075985, #0ea5e9); 
    --primary-gradient-hover: linear-gradient(90deg, #0ea5e9, #075985);
    
    --secondary-color: #C8C8C9; /* Light Gray Text */
    --text-color: #FFFFFF; /* White Text */
    --nav-bg: rgba(11, 11, 21, 0.8); /* Transparent Dark */
    --hover-color: #075985; /* Darker Purple */
    --lighthover-color: #2A2F3C;
    --dropdown-bg: #1A1F2C;
    --dropdown-text: #FFFFFF;
    --border-color: #2A2F3C; /* Subtle Border */
    --accent-color: #0ea5e9; /* Cyan Accent */
    --cta-button: #ffb300;
    --whatsapp-gradient: linear-gradient(90deg, #128C7E, #25D366);
    --whatsapp-gradient-hover: linear-gradient(90deg, #25D366, #128C7E);
    --secondary-interactive: #66b2ff;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --progress-bar: white;
    --final-price: #ef4444;
    --discount-color: #ef4444;
    --offer-color: #10b981;
    --background-navbar-rgb: 11, 11, 21;
}

.dark-mode {
    --background-color: #0B0B15;
    --card-color: #1A1F2C;
    --primary-color: #9b87f5;
    --secondary-color: #C8C8C9;
    --text-color: #FFFFFF;
    --nav-bg: rgba(11, 11, 21, 0.95);
    --hover-color: #7E69AB;
    --lighthover-color: #2A2F3C;
    --dropdown-bg: #1A1F2C;
    --dropdown-text: #FFFFFF;
    --border-color: #2A2F3C;
    --accent-color: #0ea5e9;
    --cta-button: #ffb300;
    --whatsapp-button: #25D366;
    --whatsapp-button-hover: #128C7E;
    --secondary-interactive: #66b2ff;
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --background-navbar-rgb: 11, 11, 21;
}

/* Estilo da barra de rolagem para navegadores WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: all 0.3s;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
html{
    scroll-behavior: smooth;
}
/* Navbar styles */
header {
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 20px auto 0;
    border-radius: 24px;
    width: 90%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar a {
    font-size: 25px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.navbar a:hover,
.navbar a:active {
    color: var(--text-color);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
    height: 40px;
    vertical-align: middle;
}

.nav-links {
    align-items: center;
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin-left: 30px;
}

.nav-links a {
    vertical-align: middle;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dropdown-bg);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1001;
}

.dropdown-content a {
    color: var(--dropdown-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 19px;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Ícones Sociais na Navbar */
.social-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--primary-color);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.social-link:hover svg {
    color: var(--primary-color);
    filter: brightness(1.2);
}

.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.dark-mode .dark-mode-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .dark-mode-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dark-mode-toggle svg {
    color: currentColor;
    transition: color 0.3s ease;
}

.dark-mode .dark-mode-toggle svg {
    color: #ffffff;
    stroke: #ffffff;
}

/* Hero Section */
.hero {
    max-width: 90%;
    display: flex;
    align-items: center;
    padding: 50px 0;
    margin-bottom: 50px;
}

.hero video {
    position: absolute;
    top: -10%;
    left: 30%;
    max-width: 1440px;
    opacity: 0.6;
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250%;
    background: linear-gradient(to bottom, rgba(246, 249, 252, 0) 30%, var(--background-color) 35%);
    z-index: -1;
}

.hero-image {
    display: none;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero p {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-list {
    margin: 30px 0;
    list-style-type: none;
}

.service-list li {
    margin-bottom: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 24px;
}
 .heroh2 {
    color: var(--primary-color);
 }

.cta {
    margin-top: 30px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(155, 135, 245, 0.3);
    transition: all 0.3s ease;

}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(155, 135, 245, 0.5);
    filter: brightness(1.1);
    
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

.btn-wpp {
    background: var(--whatsapp-gradient);
    color: white;
    transition: all 0.3s ease;
}

.btn-wpp:hover {
    background: var(--whatsapp-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-header i[data-lucide="arrow-up"] {
    width: 20px;
    height: 20px;
}

.btn-wpp svg {
    margin-right: 8px;
}



.btn i {
    margin-right: 8px;
}

.btn-header {
    font-size: 24px;
}

/* Estilos para os Cards de Serviços */
.services-cards {
    padding: 60px 0;
}

#servicos {

    scroll-margin-top: 125px;
}
#sobre{

    scroll-margin-top: 150px;
}


.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: var(--card-color);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 60px 30px 40px;
    padding-top: 100px;
    width: 28.9%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
}

.service-card-bottom {
    margin-top: 100px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.medal-img {
    position: absolute;
    transform: translateX(-50%);
    top: -100px;
    left: 50%;
    margin-bottom: 20px;
    width: 196px;
    height: 196px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medal-img img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.service-card:hover .medal-img img:hover {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-description {
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.card-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: 80%;
    text-align: center;
}

.card-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Efeito de borda brilhante nos cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Seção Sobre Nós */
.about-section {
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.about-content {
    max-width: 90%;
    margin: 0 auto 40px;
    text-align: center;
}

.about-text {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-color);
}

.about-text strong {
    color: var(--accent-color);
}

.highlight-years {
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-spec,
.highlight-mmr,
.highlight-service {
    font-weight: 700;
    color: var(--primary-color);
}

.dota-heroes {
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
}

.dota-heroes img {
    max-width: 90%;
    margin: 0 auto;
}

/* Seção de Estatísticas */
.stats-section {
    background: var(--primary-color);
    margin: 0 auto;
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 220px;
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon img {
    width: 68px;
    height: 68px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(white);
}

.stat-text {
    font-size: 24px;
    font-weight: 500;
}

/* Seção Processo de Contratação */
.process-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ajunta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.process-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-btn {
    width: 80%;
    padding: 15px;
    font-size: 18px;
}

.miniaturas {
    margin: auto;
    width: 600px;
    background: var(--card-color);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
}

.miniaturas img {
    width: 256px;
    height: auto;
    margin-bottom: 15px;
}

.ranks {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.rank {
    text-align: center;
}

.arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
}

.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info div {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 5px;
}

.btn-like {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.process-steps {
    margin: auto;
    flex: 2;
    min-width: 20%;
    max-width: 45%;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:nth-child(-n+3)::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 25px;
    width: 2px;
    height: calc(50% + 30px);
    background-color: var(--primary-color);
    z-index: 1;
}

.step-icon {
    flex: 0 0 60px;
    margin: 0 auto;
    text-align: center;
}

.step-icon img {
    width: 32px;
    height: 32px;
}

.step-img {
    width: 20px;
    height: 20px;
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-description {
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.6;
}

.process-cta {
    text-align: left;
    margin-top: 40px;
    margin-left: 62px;
}

.process-cta .btn {
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.avaliacoes h1 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
}

.review-card.container {
    width: 90%;
    margin: auto;
    text-align: center;
    display: block;
}

.review-card {
    display: block;
    flex: 1;
    width: 70vw;
    height: 275px;
    background: var(--card-color);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    padding: 20px;
    text-align: left;
    transition: opacity 0.5s ease;
}

.review-card.hidden {
    opacity: 0;
}

.review-card .user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    text-align: center;
}

.review-card .user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-card .user-info .name {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.review-card .user-info .date {
    font-size: 12px;
    color: var(--text-color);
    text-align: center;
}

.review-card .stars {
    color: var(--primary-color);
    margin: 5px 0;
    font-size: 30px;
}

.review-card .comment {
    font-size: 25px;
    color: var(--text-color);
    line-height: 1.4;
}

.avaliacoes p {
    font-size: 18px;
    margin-top: 75px;
    margin-bottom: 50px;
    text-align: center;
}

.avaliacoes a {
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-color);
}

.avaliacoes a:hover {
    color: var(--hover-color);
}

.faq-icon-small {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

/* Footer Styles */
.footer {
    margin-top: 10px;
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 40px 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

.payment-methods img,
.secure-site img {
    max-height: 100px;
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: background-color 0.3s;
}

.footer-icons a:hover {
    background-color: var(--hover-color);
}

.footer-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.secure-site {
    display: block;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.btn-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html,
    body {
        overflow-x: hidden;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        border-radius: 0;
        margin: 0;
        padding: 10px 15px;
        -webkit-backdrop-filter: none;
        z-index: 1001;
    }
    

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--nav-bg);
        width: 100%;
        height: calc(100vh - 70px);
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        padding: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background-color: rgba(0, 0, 0, 0.05);
        padding-left: 15px;
    }

    .dark-mode .dropdown-content {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .social-icons {
        width: 100%;
        margin: 20px 0;
        padding: 15px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link i {
        font-size: 22px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .hero video {
        display: none;
    }

    .hero-image {
        display: flex;
        margin-bottom: -500px;
        z-index: -2;
    }

    .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 300%;
        background: linear-gradient(to bottom, rgba(246, 249, 252, 0) 30%, var(--background-color) 35%);
        z-index: -1;
    }

    .hero-content {
        margin-top: 100px;
        padding-right: 0;
        margin-bottom: 30px;
        width: 90%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 20px;
    }

    .buttons {
        justify-content: center;
    }

    .service-list li {
        font-size: 18px;
        justify-content: left;
    }

    .cta h2 {
        font-size: 20px;
    }

    .btn-header {
        font-size: 18px;
    }

    .service-card {
        width: 90%;
        max-width: 90%;
        margin-bottom: 30px;
        margin-top: 50px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content {
        max-width: 90%;
    }

    .about-text {
        font-size: 16px;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .process-steps {
        min-width: 100%;
        max-width: 100%;
    }

    .process-step {
        display: flex;
        flex-direction: left;
        align-items: flex-start;
        position: relative;
        text-align: left;
    }

    .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 48px;
        left: 28px;
        height: 80%;
        margin-top: 5px;
        width: 2px;
        background-color: var(--primary-color);
    }

    .step-icon {
        margin: 0 auto 15px;
    }

    .process-cta {
        margin-left: 60px;
    }

    .process-cta .btn.cta-btn {
        font-size: 18px !important;
        margin-bottom: 30px;
    }

    .process-container {
        overflow-x: hidden;
        flex-direction: column-reverse;
    }

    .miniaturas {
        display: none;
        width: 100%;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
    }

    .miniaturas img {
        width: 35vw;
        height: auto;
        margin-bottom: 15px;
    }

    .review-card.container {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    .review-card {
        display: block;
        flex: 1;
        overflow-x: hidden;
        width: 80vw;
        border-radius: 8px;
        padding: 20px;
        text-align: left;
        transition: opacity 0.5s ease;
    }

    .review-card.hidden {
        opacity: 0;
    }

    .review-card .user-info {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .review-card .user-info img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .review-card .user-info .name {
        font-weight: bold;
        font-size: 16px;
    }

    .review-card .user-info .date {
        font-size: 12px;
        color: #666;
    }

    .review-card .stars {
        font-size: 14px;
        margin: 5px 0;
    }

    .review-card .comment {
        font-size: 14px;
        line-height: 1.4;
    }
}