:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #5e78ff;
    --secondary: #ff5e78;
    --dark: #2b2d42;
    --gray: #8d99ae;
    --light-gray: #edf2f4;
    --white: #ffffff;
    --success: #2ec4b6;
    --warning: #ff9f1c;
    --danger: #e71d36;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Continuação do styles.css */

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 80px 0;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
}

.btn-play i {
    font-size: 2rem;
    margin-right: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: 100px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 5px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/grid-pattern.svg') repeat;
    opacity: 0.03;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #505668;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-cta .btn-primary {
    padding: 14px 30px;
    font-size: 1.05rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(67, 97, 238, 0.3);
}

.hero-cta .btn-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.hero-cta .btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-play {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-play i {
    font-size: 2.5rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-play:hover {
    color: var(--primary-dark);
}

.btn-play:hover i {
    transform: scale(1.1);
}

.stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.lgpd-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
    transition: all 0.3s ease;
}

.lgpd-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.lgpd-badge i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Hero Slider Styles */
.hero-slider {
    flex: 1;
    position: relative;
    min-width: 300px;
    max-width: 550px;
    margin: 0 auto;
    animation: fadeInRight 1s ease-out;
}

.hero-slider .features-slider {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: white;
}

.hero-slider .feature-slide {
    padding: 20px;
    text-align: center;
    display: none;
}

.hero-slider .feature-slide:first-child {
    display: block;
}

.hero-slider .feature-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-slider .feature-slide h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.hero-slider .feature-slide p {
    color: #6c757d;
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.prev-btn, .next-btn {
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d9e6;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.5);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-light) 100%);
    top: -150px;
    right: -100px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--secondary) 0%, #ff8e9e 100%);
    bottom: -100px;
    left: 30%;
    opacity: 0.07;
    animation: float 6s ease-in-out infinite reverse;
}

/* Animações */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
}

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

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.benefit-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card ul {
    margin-top: 15px;
}

.benefit-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.benefit-card ul li:before {
    content: "✓";
    color: var(--success);
    margin-right: 8px;
    font-weight: bold;
}

/* Product Demo Section */
.product-demo {
    background-color: var(--light-gray);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

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

.video-placeholder {
    background-color: var(--dark);
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: var(--secondary);
}

.features-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.feature-slide {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

.feature-slide img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary);
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    margin: 0 5px;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.tab-btn {
    padding: 15px 25px;
    font-weight: 600;
    color: var(--gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tab-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.tab-item:hover {
    background-color: var(--light-gray);
    transform: translateY(-5px);
}

.tab-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.tab-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tab-flex.reversed {
    flex-direction: row-reverse;
}

.tab-image, .tab-info {
    flex: 1;
}

.tab-image img {
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.tab-info ul {
    margin: 20px 0;
}

.tab-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tab-info li:before {
    content: "✓";
    color: var(--success);
    margin-right: 10px;
    font-weight: bold;
}

.see-more {
    text-align: center;
    margin-top: 30px;
}

.see-more a {
    color: var(--primary);
    font-weight: 600;
}

.see-more a:hover {
    text-decoration: underline;
}

/* Casos de Uso */
.use-cases {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

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

.case-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.case-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.case-quote {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.quote-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 300px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo-item img {
    height: 40px;
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover img {
    opacity: 1;
}

/* Pricing */
.pricing {
    background-color: var(--light-gray);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: 20%;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.price {
    margin: 20px 0;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price .amount.annual {
    display: none;
}

.price .period {
    color: var(--gray);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 10px;
}

.pricing-features ul li.disabled {
    color: var(--gray);
    text-decoration: line-through;
}

.pricing-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
}

.faq-icon {
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff8e9e 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

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

.footer-links h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary);
    margin-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

.language-selector select {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .tab-flex {
        flex-direction: column;
    }
    
    .tab-flex.reversed {
        flex-direction: column;
    }
    
    .tab-image, .tab-info {
        width: 100%;
    }
    
    .tab-image {
        margin-bottom: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        margin: 10px 0;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin: 10px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Estilos para o selo de conformidade LGPD no footer */
.lgpd-compliance-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.lgpd-compliance-footer img {
    width: 50px;
    height: 50px;
}

.lgpd-compliance-footer p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Ajustes para os novos cards de benefícios */
.benefit-card.lgpd {
    border-left: 3px solid var(--success);
}

.benefit-card.lgpd .icon {
    background-color: var(--success);
}

/* Ajustes para a nova tab de segurança/LGPD */
.tab-content#tab4 ul li:before {
    color: var(--success);
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .hero-slider {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-play {
        margin-bottom: 20px;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Estilos melhorados para a seção de telas do sistema */
.system-screens {
    padding: 40px 0; /* Reduzido de 80px para 40px */
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
}

.system-carousel {
    max-width: 1100px; /* Aumentado para dar mais espaço às imagens */
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: var(--white);
    position: relative;
}

.carousel-slides {
    position: relative;
    min-height: 550px; /* Aumentado para acomodar imagens maiores */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px; /* Reduzido de 30px para 20px */
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    max-width: 95%; /* Aumentado de 90% para 95% */
    max-height: 450px; /* Aumentado de 400px para 450px */
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px; /* Reduzido de 20px para 15px */
    object-fit: contain; /* Garante que a imagem seja exibida integralmente */
}

.slide-info {
    text-align: center;
    max-width: 90%; /* Aumentado de 80% para 90% */
    margin-bottom: 5px; /* Adicionado para reduzir espaço inferior */
}

.slide-info h3 {
    color: var(--primary);
    margin-bottom: 5px; /* Reduzido de 10px para 5px */
    font-size: 1.5rem;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; /* Reduzido de 20px para 15px */
}

.carousel-control {
    background: rgba(255, 255, 255, 0.8); /* Aumentado a opacidade de 0.7 para 0.8 */
    border: none;
    width: 42px; /* Ligeiramente maior para melhor usabilidade */
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    margin: 0 5px;
}

.carousel-control:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin: 0 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .system-screens {
        padding: 30px 0; /* Ainda mais reduzido em telas menores */
    }
    
    .carousel-slides {
        min-height: 400px; /* Ajustado para telas menores */
    }
    
    .carousel-slide {
        padding: 15px;
    }
    
    .carousel-slide img {
        max-height: 320px;
    }
    
    .slide-info {
        max-width: 100%;
    }
    
    .slide-info h3 {
        font-size: 1.3rem;
    }
}
