 /* Variáveis de cores */
 :root {
     --primary: #251bb1be;
     --secondary: #0a0a0ad5;
     --accent: #ffd166;
     --dark: #1a1a2e;
     --light: #f8f9fa;
     --success: #06d6a0;
     --error: #ef476f;
     --text: #333333;
     --whatsapp: #25d366;
     --menu-bg: rgba(26, 26, 46, 0.95);
 }

 /* Reset e estilos base */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: var(--light);
     color: var(--text);
     overflow-x: hidden;
 }

 /* Container principal */
 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Cabeçalho e navegação */
 header {
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     padding: 15px 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo img {
     height: 60px;
     width: auto;
     animation: pulse 2s infinite;
 }

 .animated-title {
     font-size: 24px;
     font-weight: 700;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .animated-title span {
     display: inline-block;
     animation: slideIn 1s forwards;
     opacity: 0;
     transform: translateY(20px);
 }

 .animated-title span:nth-child(1) {
     animation-delay: 0.1s;
 }

 .animated-title span:nth-child(2) {
     animation-delay: 0.2s;
 }

 .animated-title span:nth-child(3) {
     animation-delay: 0.3s;
 }

 .animated-title span:nth-child(4) {
     animation-delay: 0.4s;
 }

 .animated-title span:nth-child(5) {
     animation-delay: 0.5s;
 }

 .animated-title span:nth-child(6) {
     animation-delay: 0.6s;
 }

 .animated-title span:nth-child(7) {
     animation-delay: 0.7s;
 }

 .animated-title span:nth-child(8) {
     animation-delay: 0.8s;
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 20px;
     position: relative;
 }

 .nav-links>li>a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     position: relative;
     padding: 10px 5px;
     display: block;
 }

 .nav-links>li>a:after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--accent);
     transition: width 0.3s ease;
 }

 .nav-links>li>a:hover:after {
     width: 100%;
 }

 /* Submenu */
 .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--menu-bg);
     width: 220px;
     padding: 15px 0;
     border-radius: 5px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 100;
 }

 .nav-links li:hover .submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .submenu li {
     margin: 0;
     padding: 0;
 }

 .submenu a {
     display: block;
     padding: 10px 20px;
     color: #ddd;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .submenu a:hover {
     color: var(--accent);
     background: rgba(255, 255, 255, 0.05);
     padding-left: 25px;
 }

 .hamburger {
     display: none;
     cursor: pointer;
     background: none;
     border: none;
     color: white;
     font-size: 24px;
 }

 /* Hero Section */
 .hero {
     padding: 160px 0 100px;
     background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('https://tyttosoft.com.br/assets/img/equipe_tssistemas.jpeg');
     background-size: cover;
     background-position: center;
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 20px;
     animation: fadeInDown 1s ease;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     animation: fadeInUp 1s ease;
 }

 .btn {
     display: inline-block;
     padding: 12px 30px;
     background: var(--accent);
     color: var(--dark);
     text-decoration: none;
     border-radius: 30px;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
     background: var(--primary);
     color: white;
 }

 .btn:disabled {
     background: #ccc;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }

 .btn-whatsapp {
     background: var(--whatsapp);
     color: white;
     margin-left: 15px;
 }

 .btn-whatsapp:hover {
     background: #128C7E;
     transform: translateY(-3px);
 }

 /* Seções gerais */
 section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .section-title h2:after {
     content: '';
     position: absolute;
     width: 70px;
     height: 3px;
     background: var(--secondary);
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
 }

 .section-title p {
     color: var(--text);
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
 }

 /* Serviços */
 .services {
     background-color: white;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: white;
     border-radius: 10px;
     padding: 30px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     text-align: center;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .service-card:before {
     content: '';
     position: absolute;
     width: 100%;
     height: 0;
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     bottom: 0;
     left: 0;
     transition: all 0.3s ease;
     z-index: -1;
     opacity: 0.9;
 }

 .service-card:hover:before {
     height: 100%;
 }

 .service-card:hover {
     transform: translateY(-10px);
     color: white;
 }

 .service-card i {
     font-size: 48px;
     color: var(--primary);
     margin-bottom: 20px;
     transition: all 0.3s ease;
 }

 .service-card:hover i {
     color: white;
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 /* Sobre */
 .about {
     background: linear-gradient(135deg, var(--secondary), var(--primary));
     color: white;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .about-text h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
 }

 .about-text p {
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .about-image {
     position: relative;
 }

 .about-image img {
     width: 100%;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 /* Portfólio */
 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .portfolio-item {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     height: 250px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .portfolio-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.5s ease;
 }

 .portfolio-item:hover img {
     transform: scale(1.1);
 }

 .portfolio-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(13, 14, 14, 0.733);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     opacity: 0;
     transition: all 0.3s ease;
     padding: 20px;
     text-align: center;
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
 }

 .portfolio-overlay h3 {
     color: white;
     font-size: 1.5rem;
     margin-bottom: 10px;
 }

 .portfolio-overlay p {
     color: white;
     margin-bottom: 15px;
 }

/* Depoimento */
.depoimento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.depoimento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.depoimento-item:hover img {
    transform: scale(1.1);
}

.depoimentooverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 14, 14, 0.733);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.depoimento-item:hover .depoimento-overlay {
    opacity: 1;
}

.depoimento-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.depoimento-overlay p {
    color: white;
    margin-bottom: 15px;
}

 /* Contato */
 .contact {
     background: var(--light);
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 15px;
 }

 .contact-item i {
     font-size: 24px;
     color: var(--primary);
 }

 .contact-form {
     background: white;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     position: relative;
 }

 .form-group {
     margin-bottom: 20px;
     position: relative;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     border-color: var(--primary);
     outline: none;
     box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
 }

 .form-group .error {
     color: var(--error);
     font-size: 14px;
     margin-top: 5px;
     display: none;
 }

 .form-group.invalid input,
 .form-group.invalid textarea {
     border-color: var(--error);
 }

 .form-group.invalid .error {
     display: block;
 }

 .form-status {
     padding: 15px;
     border-radius: 5px;
     margin-bottom: 20px;
     display: none;
     text-align: center;
 }

 .form-status.success {
     background-color: rgba(6, 214, 160, 0.2);
     color: var(--success);
     border: 1px solid var(--success);
     display: block;
 }

 .form-status.error {
     background-color: rgba(239, 71, 111, 0.2);
     color: var(--error);
     border: 1px solid var(--error);
     display: block;
 }

 .form-status.loading {
     background-color: rgba(255, 209, 102, 0.2);
     color: var(--accent);
     border: 1px solid var(--accent);
     display: block;
 }

 /* Footer */
 footer {
     background: var(--dark);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
 }

 .footer-logo img {
     height: 60px;
     width: auto;
 }

 .footer-logo-text {
     font-size: 20px;
     font-weight: 700;
     color: white;
 }

 .footer-logo-text span {
     color: var(--accent);
 }

 .footer-links h4 {
     font-size: 18px;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-links h4:after {
     content: '';
     position: absolute;
     width: 40px;
     height: 2px;
     background: var(--accent);
     bottom: 0;
     left: 0;
 }

 .footer-links ul {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #ddd;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--accent);
     padding-left: 5px;
 }

 .footer-apps {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 10px;
 }

 .app-badge {
     display: inline-block;
     background: rgba(255, 255, 255, 0.1);
     padding: 8px 12px;
     border-radius: 5px;
     font-size: 12px;
     transition: all 0.3s ease;
 }

 .app-badge:hover {
     background: var(--primary);
     transform: translateY(-2px);
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--primary);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 14px;
 }

 .payment-methods {
     display: flex;
     gap: 10px;
     margin-top: 15px;
     flex-wrap: wrap;
 }

 .payment-method {
     background: rgba(255, 255, 255, 0.1);
     padding: 5px 10px;
     border-radius: 4px;
     font-size: 12px;
 }

 /* Animações */
 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

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

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 @keyframes slideIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 .float-animation {
     animation: float 3s ease-in-out infinite;
 }

 /* Floating WhatsApp Button */
 .floating-whatsapp {
     position: fixed;
     bottom: 25px;
     right: 25px;
     z-index: 999;
     width: 60px;
     height: 60px;
     background-color: var(--whatsapp);
     color: white;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 30px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
     transition: all 0.3s ease;
     animation: pulse 2s infinite;
 }

 .floating-whatsapp:hover {
     transform: scale(1.1);
     background-color: #128C7E;
 }

 /* Responsividade */
 @media (max-width: 1200px) {
     .nav-links li {
         margin-left: 15px;
     }
 }

 @media (max-width: 992px) {

     .about-content,
     .contact-grid {
         grid-template-columns: 1fr;
     }

     .about-image {
         order: -1;
     }

     .hero h1 {
         font-size: 2.8rem;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background: var(--menu-bg);
         flex-direction: column;
         align-items: center;
         justify-content: flex-start;
         transition: all 0.5s ease;
         gap: 0;
         padding-top: 20px;
         overflow-y: auto;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links li {
         margin: 0;
         width: 100%;
         text-align: center;
     }

     .nav-links>li>a {
         padding: 15px;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     }

     .submenu {
         position: static;
         width: 100%;
         background: rgba(0, 0, 0, 0.2);
         box-shadow: none;
         display: none;
         opacity: 1;
         visibility: visible;
         transform: none;
         padding: 0;
     }

     .nav-links li:hover .submenu {
         transform: none;
     }

     .submenu.active {
         display: block;
     }

     .submenu a {
         padding: 12px 15px;
         font-size: 14px;
     }

     .hamburger {
         display: block;
     }

     .animated-title {
         font-size: 18px;
     }
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2.3rem;
     }

     .hero p {
         font-size: 1rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .btn-whatsapp {
         margin-left: 0;
         margin-top: 15px;
         display: inline-block;
     }

     .footer-content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-links h4:after {
         left: 50%;
         transform: translateX(-50%);
     }

     .footer-logo {
         justify-content: center;
     }
 }

 @media (max-width: 576px) {
     .hero {
         padding: 130px 0 80px;
     }

     .hero h1 {
         font-size: 2rem;
     }

     section {
         padding: 60px 0;
     }

     .service-card,
     .portfolio-item {
         height: auto;
     }

     .animated-title {
         font-size: 16px;
     }

     .animated-title span {
         display: none;
     }

     .animated-title span:nth-child(1),
     .animated-title span:nth-child(2) {
         display: inline-block;
     }
 }

 #btnTopo {
     position: fixed;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 999;
     background-color: var(--primary);
     color: white;
     border: none;
     outline: none;
     padding: 12px 16px;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     display: none;
     /* fica oculto até rolar a página */
     transition: background 0.3s ease, transform 0.3s ease;
 }

 #btnTopo:hover {
     background-color: var(--secondary);
     transform: translateX(-50%) scale(1.1);
 }

 .plan-card {
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .plan-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .destaque {
     border: 2px solid #198754;
 }

 /* Lista elegante */
 .segmentos-lista {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .segmentos-lista li {
     background: #f8f9fa;
     margin: 6px 0;
     padding: 10px 15px;
     border-radius: 8px;
     font-weight: 500;
     font-size: 1rem;
     color: #333;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     opacity: 0;
     transform: translateX(-20px);
     animation: fadeSlide 0.5s forwards;
 }

 /* Ícone decorativo antes de cada item */
 .segmentos-lista li::before {
     content: "✔";
     color: #0d6efd;
     font-weight: bold;
 }

 /* Animação em cascata */
 .segmentos-lista li:nth-child(1) {
     animation-delay: 0.1s;
 }

 .segmentos-lista li:nth-child(2) {
     animation-delay: 0.2s;
 }

 .segmentos-lista li:nth-child(3) {
     animation-delay: 0.3s;
 }

 .segmentos-lista li:nth-child(4) {
     animation-delay: 0.4s;
 }

 .segmentos-lista li:nth-child(5) {
     animation-delay: 0.5s;
 }

 .segmentos-lista li:nth-child(6) {
     animation-delay: 0.6s;
 }

 .segmentos-lista li:nth-child(7) {
     animation-delay: 0.7s;
 }

 .segmentos-lista li:nth-child(8) {
     animation-delay: 0.8s;
 }

 .segmentos-lista li:nth-child(9) {
     animation-delay: 0.9s;
 }

 .segmentos-lista li:nth-child(10) {
     animation-delay: 1.0s;
 }

 .segmentos-lista li:nth-child(11) {
     animation-delay: 1.1s;
 }

 .segmentos-lista li:nth-child(12) {
     animation-delay: 1.2s;
 }

 .segmentos-lista li:nth-child(13) {
     animation-delay: 1.3s;
 }

 .segmentos-lista li:nth-child(14) {
     animation-delay: 1.4s;
 }

 .segmentos-lista li:nth-child(15) {
     animation-delay: 1.5s;
 }

 .segmentos-lista li:nth-child(16) {
     animation-delay: 1.6s;
 }

 .segmentos-lista li:nth-child(17) {
     animation-delay: 1.7s;
 }

 .segmentos-lista li:nth-child(18) {
     animation-delay: 1.8s;
 }

 .segmentos-lista li:nth-child(19) {
     animation-delay: 1.9s;
 }

 .segmentos-lista li:nth-child(20) {
     animation-delay: 2.0s;
 }

 .segmentos-lista li:nth-child(21) {
     animation-delay: 2.1s;
 }

 .segmentos-lista li:nth-child(22) {
     animation-delay: 2.2s;
 }

 .segmentos-lista li:nth-child(23) {
     animation-delay: 2.3s;
 }

 .segmentos-lista li:nth-child(24) {
     animation-delay: 2.4s;
 }

 .segmentos-lista li:nth-child(25) {
     animation-delay: 2.5s;
 }

 .segmentos-lista li:nth-child(26) {
     animation-delay: 2.6s;
 }

 @keyframes fadeSlide {
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
 }

 .testimonial-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
 }

 .video-container {
     position: relative;
     width: 100%;
     height: 0;
     padding-bottom: 56.25%;
     /* Proporção 16:9 */
     background-color: var(--light-gray);
     cursor: pointer;
 }

 .video-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
 }

 .video-thumbnail {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .play-button {
     width: 70px;
     height: 70px;
     background-color: rgba(0, 102, 204, 0.85);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     color: white;
     font-size: 24px;
     transition: all 0.3s ease;
 }

 .video-container:hover .play-button {
     background-color: var(--primary-color);
     transform: scale(1.1);
 }

 .testimonial-content {
     padding: 25px;
 }

 .client-info {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
 }

 .client-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--light-gray);
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--primary-color);
     font-weight: bold;
     margin-right: 15px;
     font-size: 1.2rem;
 }

 .client-details h3 {
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--primary-color);
     margin-bottom: 3px;
 }

 .client-details p {
     font-size: 0.9rem;
     color: #666;
 }

 .testimonial-text {
     color: var(--text-color);
     line-height: 1.6;
     font-size: 0.95rem;
     margin-bottom: 15px;
 }

 .testimonial-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 15px;
     padding-top: 15px;
     border-top: 1px solid var(--light-gray);
 }

 .rating {
     color: #ffc107;
     font-size: 1rem;
 }