:root {
    --primary-color: #0A0F5B;
    /* Azul Escuro Principal */
    --secondary-color: #1E90FF;
    /* Azul Secundário (DodgerBlue) */
    --accent-color: #FFD700;
    /* Amarelo Dourado (Accent) */
    --neutral-color: #C0C0C0;
    /* Cinza (Neutral) */
    --white-color: #FFFFFF;
    --black-color: #1a1a1a;
    --light-bg: #f8f9fa;
    /* Um cinza muito claro para fundos de seção */
    --body-bg: #f4f7fc;
    /* Um azul muito claro, quase branco, para o corpo */
    --text-color: #333;
    --heading-color: var(--primary-color);
    --link-color: var(--secondary-color);
    --link-hover-color: #1678d1;
    /* Um tom mais escuro de azul secundário */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    /* Para títulos */
    --font-tertiary: 'Poppins', sans-serif;
    /* Para texto de destaque ou CTAs */
    --border-radius: 0.5rem;
    --shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
    --shadow-md: 0 .5rem 1rem rgba(0, 0, 0, .15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, .175);
    --transition-speed: 0.3s ease;
    --transition-cubic: cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--body-bg);
    padding-top: 70px;
    /* Ajuste para navbar fixa */
    line-height: 1.7;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: var(--heading-color);
    font-weight: 600;
}
    /* Main Hero Styles */
    .hero-section {
        background: linear-gradient(135deg, #1a2a3a 0%, #2c4a6a 100%);
        position: relative;
    }
    
    .hero-main-content {
        min-height: 80vh;
        padding-top: 3rem;
        padding-bottom: 6rem;
    }
    
    .highlight-text {
        background: #ffbf00;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .feature-pills span {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        margin: 0.15rem;
        font-weight: 500;
    }
    
    .btn-primary-manda {
        background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
        border: none;
        color: #1a2a3a;
        transition: transform 0.2s ease;
    }
    
    .btn-primary-manda:hover {
        transform: translateY(-2px);
    }
    
    /* Enhanced Wave Divider */
    .wave-divider-primary {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        height: 120px;
    }
    
    .wave-divider-primary svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 120px;
    }
    
    .wave-divider-primary .shape-fill {
        fill: #FFFFFF;
    }
    
    /* Feature Cards */
    .feature-card {
        background: white;
        border-radius: 0.5rem;
        transition: transform 0.2s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 193, 7, 0.1);
        border-radius: 50%;
        color: #FFC107;
        font-size: 1.5rem;
    }
    
    .hero-image {
        border-radius: 0.5rem;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    }
    
    /* License Section */
    /* .license-section {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    } */

    .btn-segment{
        background-color: #0A0F5B;
        color: #FFF;
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    font-family: var(--font-tertiary);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed) var(--transition-cubic);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-custom-primary {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border: none;
    color: #1a2a3a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
  }
  
  .btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  }
  
  .btn-custom-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.2);
  }
  
  .btn-custom-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.3);
  }

   .btn-demo-primary {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .btn-demo-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 84, 200, 0.4);
  }
  
  .btn-demo-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255,255,255,0.3) 0%,
      rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg);
    transition: all 0.3s ease;
  }
  
  .btn-demo-primary:hover::after {
    left: 100%;
  }
  
  .btn-whatsapp-alt {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
  }
  
  .btn-whatsapp-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  
  .btn-whatsapp-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .btn-whatsapp-alt:hover::before {
    opacity: 1;
  }
  
  .segment-cta-box {
    transition: transform 0.3s ease;
  }
  
  .segment-cta-box:hover {
    transform: translateY(-5px);
  }

.btn-primary-manda {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary-manda:hover {
    background-color: #080c4a;
    border-color: #080c4a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-manda {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary-manda:hover {
    background-color: var(--link-hover-color);
    border-color: var(--link-hover-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-warning-manda {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-warning-manda:hover {
    background-color: #e6c300;
    border-color: #e6c300;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-success-manda {
    background-color: #28a745;
    /* Verde para WhatsApp */
    border-color: #28a745;
    color: var(--white-color);
}

.btn-success-manda:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-light-manda {
    background-color: var(--white-color);
    border-color: var(--white-color);
    color: var(--primary-color);
}

.btn-light-manda:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
    transition: padding 0.3s ease, background-color 0.3s ease;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.navbar.scrolled {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    background-color: rgba(255, 255, 255, 0.95) !important;
    /* Fundo branco com transparência ao rolar */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-brand img {
    max-height: 45px;
    transition: max-height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    max-height: 35px;
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    /* padding-top: 80px; */
    /* Commented out as body already has padding-top */
    position: relative;
    overflow: hidden;
    /* Para conter a onda SVG e a imagem de fundo */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.hero-app-image {
    max-width: 350px;
    /* Adjust as needed */
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-section p.lead {
    font-size: 1.3rem;
    font-family: var(--font-tertiary);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#typed-hero-text {
    color: var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    /* Ajuste fino para evitar linha branca */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    /* Altura da onda */
}

.wave-divider .shape-fill {
    fill: var(--body-bg);
    /* Cor do fundo da próxima seção */
}

/* Segments Section */
.segment-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.segment-card .segment-icon i {
    font-size: 3.5rem;
    transition: all 0.3s ease;
}

.segment-card:hover .segment-icon i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

.segment-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.segment-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.segment-card .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.segment-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.segment-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.segment-card:hover .segment-hover-effect {
    left: 100%;
}

.segment-cta-box {
    border-left: 4px solid var(--primary-color);
}

.segment-cta-box:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* Modules Section */
#modules .module-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) var(--transition-cubic), box-shadow var(--transition-speed) var(--transition-cubic);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#modules .module-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(50, 50, 93, .1), 0 15px 35px rgba(0, 0, 0, .07);
}

#modules .module-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

#modules .module-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

#modules .module-card h4 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

#modules .module-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.module-item p.module-description {
    font-size: 0.9rem;
    color: #6c757d;
    /* Bootstrap's text-muted color */
    min-height: 60px;
    /* Adjust as needed to fit 2-3 lines */
    margin-bottom: 0;
}

/* Differentiators Section */
#differentiators .differentiator-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to the top */
    align-items: center;
    padding: 1.5rem;
    /* Added padding */
}

#differentiators .differentiator-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

#differentiators .differentiator-item i {
    font-size: 2.8rem;
    /* Slightly adjusted icon size */
    margin-bottom: 0.75rem;
    /* Spacing below icon */
    color: var(--secondary-color);
    /* Changed to DodgerBlue */
}

#differentiators .differentiator-item h5 {
    font-size: 1.1rem;
    /* Increased font size for title */
    font-weight: 600;
    /* Made title bolder */
    color: #333;
    margin-bottom: 0.5rem;
    /* Spacing below title */
}

#differentiators .differentiator-item p {
    font-size: 0.9rem;
    color: #555;
    /* Slightly darker text for better readability */
    line-height: 1.6;
}

/* Testimonials Section */
#testimonials .carousel-item {
    padding: 40px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

#testimonials .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--accent-color);
}

#testimonials .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
}

#testimonials .testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

#testimonials .testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 400;
}

#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
    width: 30px;
    height: 30px;
    background-size: 60%;
}

#testimonials .carousel-control-prev {
    left: -60px;
}

#testimonials .carousel-control-next {
    right: -60px;
}

/* Video Demo Section */
#video-demo {
    background-color: var(--primary-color);
    color: var(--white-color);
}

#video-demo .section-title {
    color: var(--white-color);
}

#video-demo .section-title::after {
    background: var(--accent-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Pricing Section */
#pricing .card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed) var(--transition-cubic), box-shadow var(--transition-speed) var(--transition-cubic);
    height: 100%;
}

#pricing .card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(50, 50, 93, .15), 0 15px 35px rgba(0, 0, 0, .1);
}

#pricing .card-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 2rem 1.5rem;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    text-align: center;
}

#pricing .card-header h4 {
    color: var(--white-color);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

#pricing .card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

#pricing .card-header .price span {
    font-size: 1rem;
    font-weight: 400;
}

#pricing .card-body {
    padding: 2rem 1.5rem;
}

#pricing .list-group-item {
    border: none;
    padding: 0.75rem 0;
    color: #555;
}

#pricing .list-group-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

#pricing .card-footer {
    background-color: transparent;
    border-top: none;
    padding: 1.5rem;
    text-align: center;
}

#pricing .card.popular {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

#pricing .card.popular:hover {
    transform: translateY(-15px) scale(1.07);
}

#pricing .card.popular .card-header {
    background-color: var(--accent-color);
}

#pricing .card.popular .card-header h4 {
    color: var(--primary-color);
}

#pricing .card.popular .card-header .price {
    color: var(--primary-color);
}

/* Contact Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-title {
    color: var(--white-color);
    font-family: var(--font-secondary);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    border-radius: calc(var(--border-radius) - 2px);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.25);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
}

.final-cta-section h2 {
    color: var(--white-color);
    font-family: var(--font-secondary);
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-tertiary);
}

/* Footer */
.footer-section {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px 0;
}

.footer-section h5 {
    color: var(--white-color);
    font-family: var(--font-secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section .footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-section .list-unstyled li {
    margin-bottom: 8px;
}

.footer-section .social-icons a {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.footer-section .social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.85rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    background-color: #e9ecef;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e9ecef;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-app-image {
        max-width: 300px;
    }

    .hero-section p.lead {
        font-size: 1.1rem;
    }

    .navbar-nav {
        margin-top: 1rem;
        background-color: var(--white-color);
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
        /* Remove underline on mobile for cleaner look */
    }

    #testimonials .carousel-control-prev {
        left: -15px;
    }

    #testimonials .carousel-control-next {
        right: -15px;
    }

    .wave-divider svg {
        height: 80px;
    }

    .segment-card {
        margin-bottom: 2rem;
    }

    .segment-card .segment-icon i {
        font-size: 3rem;
    }

    .segment-cta-box {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-app-image {
        max-width: 250px;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    #segments .segment-item i {
        font-size: 2.5rem;
    }

    #modules .module-card i {
        font-size: 3rem;
    }

    #differentiators .differentiator-item {
        text-align: center;
    }

    #differentiators .differentiator-item i {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section .col-md-4,
    .footer-section .col-md-2,
    .footer-section .col-md-3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-section .social-icons {
        justify-content: center;
        display: flex;
    }

    .wave-divider svg {
        height: 60px;
    }

    .segment-card {
        margin-bottom: 1.5rem;
    }

    .segment-card .segment-icon i {
        font-size: 2.5rem;
    }

    .segment-card h5 {
        font-size: 1rem;
    }

    .segment-card p {
        font-size: 0.9rem;
    }

    .segment-cta-box .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }

    .segment-cta-box .btn {
        width: 100%;
    }
}

/* Segment Pages Enhancements */
.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.hero-stat small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pain-point {
    transition: transform 0.2s ease;
    border-left: 4px solid var(--danger, #dc3545);
}

.pain-point:hover {
    transform: translateX(5px);
}

.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.urgency-cta .alert {
    border: none;
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    border-left: 5px solid var(--warning, #ffc107);
}

.z-2 {
    z-index: 2;
}

/* System Screenshots Carousel Styles */
.screenshot-container {
    position: relative;
    overflow: hidden;
}

.screenshot-container img {
    transition: transform 0.3s ease;
}

.screenshot-container:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.9), rgba(255, 125, 0, 0.9));
    border-radius: 10px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
}

.caption-content h5 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.caption-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Feature Highlights */
.feature-highlight {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 86, 179, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15);
    background: white;
}

.feature-highlight i {
    transition: transform 0.3s ease;
}

.feature-highlight:hover i {
    transform: scale(1.1);
}

/* Hero Feature Highlights */
.hero-feature-highlight {
    padding: 20px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-feature-highlight:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 125, 0, 0.5);
    box-shadow: 0 15px 30px rgba(255, 125, 0, 0.2);
}

.hero-feature-highlight i {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-feature-highlight:hover i {
    transform: scale(1.1);
}

.hero-feature-highlight h6 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-feature-highlight small {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

 /* Modern Button Styles - Applied to All Buttons */
  .btn-custom-primary,
  .btn-demo-primary,
  .btn-primary-manda {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
    position: relative;
    overflow: hidden;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50rem !important;
  }
  
  .btn-custom-whatsapp,
  .btn-whatsapp-alt,
  .btn-success-manda {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50rem !important;
  }

  /* Hover Effects for All Buttons */
  .btn-custom-primary:hover,
  .btn-demo-primary:hover,
  .btn-primary-manda:hover,
  .btn-custom-whatsapp:hover,
  .btn-whatsapp-alt:hover,
  .btn-success-manda:hover {
    transform: translateY(-3px);
    color: white;
  }
  
  .btn-custom-primary:hover,
  .btn-demo-primary:hover,
  .btn-primary-manda:hover {
    box-shadow: 0 8px 25px rgba(78, 84, 200, 0.4);
  }
  
  .btn-custom-whatsapp:hover,
  .btn-whatsapp-alt:hover,
  .btn-success-manda:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  /* Shine Effects for All Buttons */
  .btn-custom-primary::after,
  .btn-demo-primary::after,
  .btn-primary-manda::after,
  .btn-custom-whatsapp::after,
  .btn-whatsapp-alt::after,
  .btn-success-manda::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255,255,255,0.3) 0%,
      rgba(255,255,255,0) 60%
    );
    transform: rotate(30deg);
    transition: all 0.3s ease;
  }
  
  .btn-custom-primary:hover::after,
  .btn-demo-primary:hover::after,
  .btn-primary-manda:hover::after,
  .btn-custom-whatsapp:hover::after,
  .btn-whatsapp-alt:hover::after,
  .btn-success-manda:hover::after {
    left: 100%;
  }

  /* Test Drive Button Special Style */
  .btn-primary-manda {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    color: #1a2a3a;
  }
  
  .btn-primary-manda:hover {
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
  }

  .final-cta-section {
    background: linear-gradient(135deg, #01203f 20%, #0A0F5B 80%);
    position: relative;
    overflow: hidden;
  }
  
  .btn-cta-premium {
    background: linear-gradient(135deg, #FF9A00 0%, #FFD700 50%, #FF9A00 100%);
    background-size: 200% auto;
    border: none;
    color: #1a2a3a;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(255, 154, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
  }
  
  .btn-cta-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 154, 0, 0.4);
    background-position: right center;
    color: #1a2a3a;
  }
  
  .btn-cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: 0.5s;
  }
  
  .btn-cta-premium:hover::before {
    left: 100%;
  }
  
  .highlight-text {
    background: linear-gradient(90deg, #FFD700, #FF9A00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
  }

/* Responsive adjustments for hero highlights */
@media (max-width: 768px) {
    .hero-feature-highlight {
        padding: 15px 10px;
        margin-bottom: 15px;
    }

    .hero-feature-highlight i {
        font-size: 2.5rem !important;
    }

    .hero-feature-highlight h6 {
        font-size: 0.9rem;
    }

    .hero-feature-highlight small {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero-feature-highlight {
        padding: 12px 8px;
    }
}

/* Accordions de Planos de Preço */
.pricing-accordion .accordion-item {
  border-radius: 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: none;
  overflow: hidden;
}
.pricing-accordion .accordion-header {
  background: none;
}
.pricing-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, #f8f9fa 60%, #e9ecef 100%);
  color: var(--primary-color);
  transition: background 0.2s, color 0.2s;
}
.pricing-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #e9ecef 60%, #f8f9fa 100%);
  color: #012143;
}
.pricing-accordion .plan-title {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-accordion .plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0F5B;
  background: #ffd7001a;
  padding: 0.2rem 1rem;
  border-radius: 1rem;
}
.pricing-accordion .plan-desc {
  font-size: 1rem;
  color: #666;
  margin-left: auto;
  font-weight: 500;
}
.pricing-accordion .accordion-body {
  background: #fff;
  padding: 2rem 2.5rem 2.5rem 2.5rem;
}
.pricing-accordion .plan-modules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
}
.pricing-accordion .plan-modules li {
  font-size: 1.1rem;
  font-weight: 600;
  color: #012143;
  background: #f8f9fa;
  border-radius: 0.7rem;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
/* Cores específicas por plano */
.plan-advanced .accordion-button { border-left: 8px solid #0A0F5B; }
.plan-premium .accordion-button { border-left: 8px solid #1E90FF; }
.plan-ultimate .accordion-button { border-left: 8px solid #1a1a1a; }
.plan-advanced .plan-title { color: #0A0F5B; }
.plan-premium .plan-title { color: #1E90FF; }
.plan-ultimate .plan-title { color: #1a1a1a; }
.plan-advanced .plan-price { background: #0A0F5B0D; color: #0A0F5B; }
.plan-premium .plan-price { background: #1E90FF0D; color: #1E90FF; }
.plan-ultimate .plan-price { background: #1a1a1a0D; color: #1a1a1a; }
.pricing-accordion .accordion-button .bi {
  font-size: 1.7rem;
  margin-right: 0.5rem;
}
.pricing-accordion .accordion-button:after {
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .pricing-accordion .accordion-button {
    font-size: 1.05rem;
    padding: 1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .pricing-accordion .plan-modules {
    flex-direction: column;
    gap: 0.7rem;
  }
  .pricing-accordion .accordion-body {
    padding: 1.2rem 1rem 1.5rem 1rem;
  }
}

/* Cards de Planos em Linha */
.pricing-cards-row {
  margin-top: 2rem;
}
.plan-card {
  border-radius: 1.2rem;
  box-shadow: var(--shadow-md);
  border: none;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.plan-card .card-header {
  background: linear-gradient(90deg, #f8f9fa 60%, #e9ecef 100%);
  border-bottom: none;
  padding: 2rem 1rem 1.2rem 1rem;
  border-radius: 1.2rem 1.2rem 0 0;
}
.plan-card .plan-title {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.plan-card .plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0F5B;
  background: #ffd7001a;
  padding: 0.2rem 1rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.plan-card .plan-desc {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}
.plan-card .card-body {
  background: #fff;
  border-radius: 0 0 1.2rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
/* Accordion interno dos cards */
.inner-accordion .accordion-item {
  border: none;
  background: none;
  box-shadow: none;
}
.inner-accordion .accordion-button {
  background: #f8f9fa;
  color: #012143;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 0.7rem;
  box-shadow: none;
  padding: 0.7rem 1.2rem;
  margin-bottom: 0.5rem;
}
.inner-accordion .accordion-button:not(.collapsed) {
  background: #e9ecef;
  color: #0A0F5B;
}
.inner-accordion .accordion-body {
  background: #fff;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-top: 0.2rem;
  padding: 1.2rem 1rem 1.2rem 1.2rem;
}
.plan-card .plan-modules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.plan-card .plan-modules li {
  font-size: 1.08rem;
  font-weight: 600;
  color: #012143;
  background: #f8f9fa;
  border-radius: 0.7rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
/* Cores específicas por plano */
.plan-advanced .plan-title { color: #0A0F5B; }
.plan-premium .plan-title { color: #1E90FF; }
.plan-ultimate .plan-title { color: #1a1a1a; }
.plan-advanced .plan-price { background: #0A0F5B0D; color: #0A0F5B; }
.plan-premium .plan-price { background: #1E90FF0D; color: #1E90FF; }
.plan-ultimate .plan-price { background: #1a1a1a0D; color: #1a1a1a; }
.plan-advanced .card-header { border-top: 6px solid #0A0F5B; }
.plan-premium .card-header { border-top: 6px solid #1E90FF; }
.plan-ultimate .card-header { border-top: 6px solid #1a1a1a; }
.plan-card .plan-title .bi {
  font-size: 1.7rem;
  margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
  .plan-card .card-body {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}
@media (max-width: 767.98px) {
  .pricing-cards-row > div[class^='col-'] {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .plan-card {
    margin-bottom: 2rem;
  }
}

/* Ícones e lista de funcionalidades dos módulos */
.module-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.module-features li {
  font-size: 1.05rem;
  font-weight: 500;
  color: #012143;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.icon-included {
  color: #1E90FF;
  font-size: 1.2em;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.icon-not-included {
  color: #C0C0C0;
  font-size: 1.2em;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.not-included {
  color: #b0b0b0;
  opacity: 0.7;
  text-decoration: line-through;
}
.feature-note {
  font-size: 0.95em;
  color: #888;
  font-weight: 400;
  margin-left: 0.3em;
}
.module-features li b {
  font-weight: 700;
  color: #012143;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

/* Animação de flutuação */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse effect */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Responsivo - ajustes para mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  
  .whatsapp-float::before {
    width: 55px;
    height: 55px;
  }
}