 :root {
     --primary-purple: #5c06ec;
     --dark-purple: #1d0449;
     --light-purple: #f0e6ff;
     --accent-teal: #00c9b7;
     --dark-gray: #2d3748;
     --medium-gray: #4a5568;
     --light-gray: #f7fafc;
     --white: #ffffff;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: var(--dark-gray);
     line-height: 1.4;
     overflow-x: hidden;
 }


 p {
     font-size: 0.95rem;
     /* Aproximadamente 15.2px */
 }

 /* Tipografia profissional */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-weight: 700;
     line-height: 1.3;
 }

 .display-1,
 .display-2,
 .display-3,
 .display-4 {
     font-weight: 700;
     letter-spacing: -0.03em;
 }

 /* Efeito gradiente profissional */
 .text-gradient {
     background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }



 /* Botões com design profissional */
 .btn {
     font-weight: 600;
     padding: 12px 28px;
     border-radius: 8px;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .btn-primary {
     background-color: var(--primary-purple);
     border-color: var(--primary-purple);
     position: relative;
     overflow: hidden;
 }

 .btn-primary:hover {
     background-color: var(--dark-purple);
     border-color: var(--dark-purple);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(92, 6, 236, 0.3);
 }

 .btn-primary:after {
     content: "";
     position: absolute;
     top: -50%;
     right: -50%;
     bottom: -50%;
     left: -50%;
     background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
     transform: rotateZ(60deg) translate(-5em, 7.5em);
 }

 .btn-primary:hover:after {
     animation: sheen 1s forwards;
 }

 @keyframes sheen {
     100% {
         transform: rotateZ(60deg) translate(1em, -9em);
     }
 }

 .btn-outline-primary {
     color: var(--primary-purple);
     border-color: var(--primary-purple);
     background-color: transparent;
 }

 .btn-outline-primary:hover {
     background-color: var(--primary-purple);
     border-color: var(--primary-purple);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(92, 6, 236, 0.3);
 }




 .btn-accent {
     background-color: var(--accent-teal);
     border-color: var(--accent-teal);
     color: white;
 }

 .btn-accent:hover {
     background-color: #00b3a3;
     border-color: #00b3a3;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 201, 183, 0.3);
 }










 /* Destaques com ícones */
 .feature-card {
     background-color: var(--white);
     border-radius: 12px;
     padding: 2.5rem 2rem;
     height: 100%;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px -10px rgba(92, 6, 236, 0.15);
     border-color: rgba(92, 6, 236, 0.2);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
     color: white;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.75rem;
     margin-bottom: 1.5rem;
     box-shadow: 0 10px 20px -5px rgba(92, 6, 236, 0.3);
 }

 .feature-title {
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: var(--dark-purple);
 }




 /* Seção de demonstração */
 .demo-section {
     padding: 4rem 0;
     position: relative;
     overflow: hidden;
     background-color: #1d0449;
 }



 .demo-section:before {
     content: "";
     position: absolute;
     top: -50%;
     left: -20%;
     width: 80%;
     height: 200%;
     background: radial-gradient(circle, rgba(92, 6, 236, 0.05) 0%, rgba(92, 6, 236, 0) 70%);
     z-index: 0;
 }

 .demo-content {
     position: relative;
     z-index: 2;
 }

 .demo-video-container {
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
     transform: perspective(1500px) rotateY(10deg);
     transition: transform 0.5s ease;
     transition: 1s;
     border: 4px solid #bfa0e5;
 }

 .demo-video-container:hover {
     transform: perspective(1000px) rotateY(0deg);
     transform: scale(1.07);
     transition: 1s;
 }












 /* Sectores */
 .sectors-section {
     position: relative;
     overflow: hidden;
 }

 .sectors-section::before {
     content: "";
     position: absolute;
     top: -50%;
     right: -20%;
     width: 80%;
     height: 200%;
     background: radial-gradient(circle, rgba(92, 6, 236, 0.03) 0%, rgba(92, 6, 236, 0) 70%);
     z-index: 0;
 }

 .sector-badge {
     background-color: white;
     border: 1px solid #e0e0e0;
     color: #333;
     font-weight: 500;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     position: relative;
     z-index: 1;
 }

 .sector-badge:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(92, 6, 236, 0.1);
     border-color: rgba(92, 6, 236, 0.3);
     color: #5c06ec;
 }

 .sector-badge i {
     transition: all 0.3s ease;
 }

 .sector-badge:hover i {
     transform: scale(1.2);
 }





 /* Depoimentos profissionais */

 /* CLIENTES PRINCIPAIS */

 .testimonial-section {
     margin: 60px 0;
     width: 100%;
     overflow: hidden;
     position: relative;
     padding: 20px 0;
 }

 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-header h2 {
     /* font-size: 2.5rem; */
     color: var(--dark-purple);
     margin-bottom: 15px;
     font-weight: 700;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: "";
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--accent-teal);
     border-radius: 2px;
 }

 .section-header p {
     font-size: 1.2rem;
     color: var(--medium-gray);
     max-width: 700px;
     margin: 30px auto 0;
 }

 .testimonial-track {
     display: flex;
     animation: carousel-animation 40s linear infinite;
     width: max-content;
 }

 .testimonial-track:hover {
     animation-play-state: paused;
 }

 @keyframes carousel-animation {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 .testimonial-card {
     background: var(--white);
     border-radius: 16px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     padding: 30px;
     margin: 0 20px;
     width: 350px;
     flex-shrink: 0;
     transition: all 0.3s ease;
     border-left: 5px solid var(--accent-teal);
     position: relative;
     overflow: hidden;
 }

 .testimonial-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(92, 6, 236, 0.03) 0%, rgba(0, 201, 183, 0.02) 100%);
     z-index: 1;
 }

 .testimonial-content {
     position: relative;
     z-index: 2;
 }

 .quote-icon {
     position: absolute;
     top: 20px;
     right: 25px;
     color: var(--light-purple);
     font-size: 70px;
     opacity: 0.8;
     z-index: 1;
 }

 .testimonial-text {
     /* font-size: 17px; */
     line-height: 1.7;
     color: var(--dark-gray);
     margin-bottom: 25px;
     font-style: italic;
     min-height: 180px;
 }

 .client-info {
     display: flex;
     align-items: center;
     margin-top: 20px;
     border-top: 1px solid var(--light-purple);
     padding-top: 20px;
 }

 .client-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-weight: bold;
     font-size: 24px;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .client-details h4 {
     font-weight: 700;
     margin-bottom: 5px;
     color: var(--dark-purple);
 }

 .client-details p {
     color: var(--medium-gray);
     margin: 0;
     font-size: 15px;
 }

 .rating {
     color: #ffc107;
     margin: 15px 0;
     font-size: 18px;
 }

 .stats-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
     margin: 80px 0 40px;
 }

 .stat-card {
     background: var(--white);
     border-radius: 16px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     border: 1px solid var(--light-purple);
 }

 .stat-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
 }

 .stat-icon {
     font-size: 2.5rem;
     color: var(--primary-purple);
     margin-bottom: 15px;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-purple);
     margin: 10px 0;
 }

 .stat-label {
     color: var(--medium-gray);
     font-size: 1.1rem;
 }

 .cta-container {
     background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
     border-radius: 20px;
     padding: 70px 40px;
     text-align: center;
     color: var(--white);
     margin: 80px 0;
     position: relative;
     overflow: hidden;
     width: 100%;
 }

 .cta-container::before {
     content: "";
     position: absolute;
     top: -50px;
     right: -50px;
     width: 200px;
     height: 200px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.05);
 }

 .cta-container::after {
     content: "";
     position: absolute;
     bottom: -80px;
     left: -50px;
     width: 250px;
     height: 250px;
     border-radius: 50%;
     background: rgba(0, 201, 183, 0.08);
 }

 .cta-container h3 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     position: relative;
     z-index: 2;
 }

 .cta-container p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 30px;
     opacity: 0.9;
     position: relative;
     z-index: 2;
 }

 .cta-button {
     background: var(--accent-teal);
     color: var(--dark-purple);
     border: none;
     padding: 18px 50px;
     font-size: 1.2rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     z-index: 2;
     box-shadow: 0 5px 25px rgba(0, 201, 183, 0.4);
 }

 .cta-button:hover {
     background: var(--white);
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(0, 201, 183, 0.5);
 }

 footer {
     text-align: center;
     padding: 30px 0;
     color: var(--medium-gray);
     width: 100%;
     border-top: 1px solid var(--light-purple);
     margin-top: 40px;
 }

 @media (max-width: 768px) {
     .section-header h2 {
         font-size: 2rem;
     }

     .section-header p {
         font-size: 1.1rem;
     }

     .testimonial-card {
         width: 320px;
         margin: 0 15px;
     }

     .cta-container {
         padding: 40px 20px;
     }

     .cta-container h3 {
         font-size: 1.8rem;
     }
 }







 /* Planos e preços premium */
 .pricing-card {
     border-radius: 16px;
     overflow: hidden;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px -10px rgba(92, 6, 236, 0.15);
 }

 .pricing-header {
     background-color: var(--light-purple);
     padding: 2rem;
     text-align: center;
 }

 .pricing-popular .pricing-header {
     background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
     color: white;
 }

 .pricing-title {
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .pricing-price {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 0;
 }

 .pricing-period {
     font-size: 1rem;
     color: var(--medium-gray);
 }

 .pricing-popular .pricing-period {
     color: rgba(255, 255, 255, 0.8);
 }

 .pricing-features {
     padding: 2rem;
     font-size: 14px;
 }

 .pricing-feature {
     margin-bottom: 0.75rem;
     position: relative;
     padding-left: 1.75rem;
 }

 .pricing-feature:before {
     content: "\f00c";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--primary-purple);
 }

 .pricing-popular-badge {
     position: absolute;
     top: 0px;
     right: -15px;
     background-color: var(--accent-teal);
     color: white;
     padding: .5rem 20px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     box-shadow: 0 5px 15px rgba(0, 201, 183, 0.3);
 }


 /* Estilos para o seletor de periodicidade */
.pricing-period-selector {
    margin: 1.5rem auto;
    max-width: 600px;
}

.btn-period {
    position: relative;
    padding: 0.5rem 1.25rem;
    border: 1px solid #dee2e6;
    background-color: white;
    color: var(--medium-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-period:first-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.btn-period:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.btn-period:hover {
    background-color: #f8f9fa;
}

.btn-period.active {
    background-color: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
    box-shadow: 0 2px 10px rgba(92, 6, 236, 0.2);
}

.savings-badge .badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    background-color: var(--accent-teal);
}

/* Ajustes para os preços dinâmicos */
.pricing-price {
    transition: all 0.3s ease;
}

.period-text {
    transition: all 0.3s ease;
}

/* Efeito de destaque quando o período muda */
@keyframes priceHighlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price-highlight {
    animation: priceHighlight 0.5s ease;
    color: var(--primary-purple);
}













 /* FAQ elegante */
 .faq-item {
     margin-bottom: 1rem;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .faq-header button {
     font-weight: 600;
     padding: 1.25rem;
     text-align: left;
     width: 100%;
     background-color: var(--white);
     border: none;
     position: relative;
 }

 .faq-header button:after {
     content: "\f078";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     position: absolute;
     right: 20px;
     transition: all 0.3s ease;
 }

 .faq-header button[aria-expanded="true"]:after {
     transform: rotate(180deg);
 }

 .faq-body {
     padding: 1rem 1.25rem;
     background-color: var(--white);
 }

 /* CTA persuasivo */
 .cta-section {
     padding: 6rem 0;
     background: linear-gradient(135deg, var(--light-purple) 0%, var(--white) 100%);
     position: relative;
     overflow: hidden;
 }


 

 .cta-section::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(92, 6, 236, 0.05) 0%, rgba(0, 201, 183, 0) 70%);
     animation: pulse 15s infinite alternate;
     z-index: 0;
 }

 .cta-title {
     color: var(--dark-purple);
     font-size: 2.8rem;
     font-weight: 800;
     margin-bottom: 1.5rem;
     line-height: 1.2;
     text-shadow: 0 2px 4px rgba(29, 4, 73, 0.1);
     position: relative;
 }

 .cta-title span.highlight {
     background: linear-gradient(120deg, var(--accent-teal) 0%, var(--primary-purple) 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     position: relative;
 }

 .cta-title span.highlight::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, var(--accent-teal) 0%, var(--primary-purple) 100%);
     border-radius: 3px;
 }

 .cta-subtitle {
     color: var(--medium-gray);
     font-size: 1.3rem;
     max-width: 700px;
     margin: 0 auto 3rem;
     line-height: 1.6;
     position: relative;
 }

 .card-img-container {
     height: 380px;
     overflow: hidden;
     border-radius: 16px;
     box-shadow: 0 25px 50px -12px rgba(92, 6, 236, 0.15);
     margin-bottom: 3rem;
     position: relative;
     border: none;
     transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
     transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
     z-index: 2;
 }


 .cta-section .img-cta-dashboard{
    border: 4px solid #bfa0e5;
    border-radius: 16px;
 }

 .card-img-container:hover {
     box-shadow: 0 35px 60px -15px rgba(92, 6, 236, 0.25);
     transform: perspective(1000px) rotateX(1deg) rotateY(-1deg) scale(1.01);
     transition: 1s;
 }

 .card-img-container::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 40%;
     background: linear-gradient(to top, rgba(240, 230, 255, 0.95) 20%, transparent 100%);
     z-index: 2;
     pointer-events: none;
     transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 .card-img-container:hover::before {
     opacity: 0;
     transform: translateY(20px);
 }

 .card-img-container img {
     width: 100%;
     height: auto;
     object-fit: cover;
     transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
     transform-origin: center bottom;
 }

 .card-img-container:hover img {
     transform: translateY(calc(-100% + 380px)) scale(1.05);
 }

 .btn-premium {
     background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-teal) 100%);
     color: var(--white);
     font-weight: 700;
     padding: 1.2rem 3rem;
     border-radius: 50px;
     border: none;
     transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     max-width: 320px;
     margin: 0 auto;
     position: relative;
     overflow: hidden;
     box-shadow: 0 15px 30px rgba(92, 6, 236, 0.3);
     z-index: 1;
 }

 .btn-premium::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-purple) 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
     z-index: -1;
 }

 .btn-premium:hover {
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 20px 40px rgba(92, 6, 236, 0.4);
 }

 .btn-premium:hover::before {
     opacity: 1;
 }

 .btn-premium:active {
     transform: translateY(0) scale(0.98);
 }

 .floating-shapes {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 1;
     overflow: hidden;
 }

 .shape {
     position: absolute;
     opacity: 0.1;
     animation: float 15s infinite linear;
 }

 .shape-1 {
     width: 100px;
     height: 100px;
     background: var(--accent-teal);
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     top: 10%;
     left: 5%;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 150px;
     height: 150px;
     background: var(--primary-purple);
     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     top: 60%;
     right: 5%;
     animation-delay: 3s;
     animation-duration: 20s;
 }

 .shape-3 {
     width: 80px;
     height: 80px;
     background: var(--accent-teal);
     border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
     bottom: 10%;
     left: 15%;
     animation-delay: 6s;
     animation-duration: 25s;
 }

 @keyframes float {
     0% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-50px) rotate(180deg);
     }

     100% {
         transform: translateY(0) rotate(360deg);
     }
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 0.1;
     }

     50% {
         opacity: 0.15;
     }

     100% {
         transform: scale(1.2);
         opacity: 0.1;
     }
 }

 @media (max-width: 768px) {
     .cta-section {
         padding: 4rem 0;
     }

     .cta-title {
         font-size: 2.2rem;
     }

     .cta-subtitle {
         font-size: 1.1rem;
     }

     .card-img-container {
         height: auto;
         max-height: 300px;
     }

     .card-img-container:hover img {
         transform: none;
     }

     .card-img-container::before {
         display: none;
     }

     .btn-premium {
         padding: 1rem 2rem;
     }
 }






 /* Rodapé premium */
 .footer {
    margin: 0;
     background-color: var(--dark-purple);
     color: white;
     padding: 5rem 0 2rem;
 }

 .footer-logo {
     margin-bottom: 1.5rem;
 }

 .footer-about {
     opacity: 0.8;
     margin-bottom: 2rem;
 }

 .footer-links-title {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     color: white;
 }

 .footer-links li {
     margin-bottom: 0.75rem;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     color: white;
     padding-left: 5px;
 }

 .footer-contact-item {
    font-size: 12px;
     margin-bottom: 1rem;
     display: flex;
     /* align-items: flex-start; */
 }

 .footer-contact-icon {
     margin-right: 15px;
     color: var(--accent-teal);
     font-size: 1.1rem;
     margin-top: 1px;
 }

 .footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     margin-right: 10px;
     transition: all 0.3s ease;
 }

 .footer-social a:hover {
     background-color: var(--primary-purple);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 2rem;
     margin-top: 3rem;
 }

 /* Efeitos de hover e animações */
 .hover-scale {
     transition: transform 0.3s ease;
 }

 .hover-scale:hover {
     transform: scale(1.03);
 }

 .hover-shadow:hover {
     box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
 }

 /* Responsividade profissional */
 @media (max-width: 1199.98px) {
     .hero-title {
         font-size: 3rem;
     }
 }

 @media (max-width: 991.98px) {
     .hero-section {
         padding: 6rem 0 4rem;
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .hero-image-container {
         margin-top: 3rem;
         transform: none !important;
     }

     .demo-video-container {
         margin-top: 3rem;
         transform: none !important;
     }
 }

 @media (max-width: 767.98px) {
     .hero-section {
         padding: 5rem 0 3rem;
         text-align: center;
     }

     .hero-title {
         font-size: 2.2rem;
     }

     .hero-subtitle {
         margin-left: auto;
         margin-right: auto;
     }

     .hero-buttons {
         justify-content: center;
     }

     .section-title {
         font-size: 2rem;
     }
 }

 @media (max-width: 575.98px) {
     .hero-title {
         font-size: 2rem;
     }

     .btn {
         padding: 10px 20px;
     }
 }