/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS */
:root {
    --primary-color: #28a745;
    --primary-dark: #1e7e34;
    --primary-light: #34ce57;
    --secondary-color: #1a2a48;
    --accent-color: #007bff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    min-height: 70px;
}

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

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 60px;
    width: auto;
    display: block;
}

header nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

header .nav-list li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

header .nav-list li a:hover {
    color: var(--primary-color);
}

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

header .nav-list li a:hover::after,
header .nav-list li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.simple-link {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.simple-link:hover {
    color: var(--primary-color);
}

.cta-button-small {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button-small:hover {
    background: var(--primary-dark);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 45px;
    height: 45px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    opacity: 0.05;
    transform: skewX(-15deg);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Dashboard Preview */
.hero-visual {
    text-align: center;
    position: relative;
}

.dashboard-preview {
    position: relative;
    display: inline-block;
}

.dashboard-main {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-card {
    background: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    animation: floatEffect 5s ease-in-out infinite alternate;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 50%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes floatEffect {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Solutions Overview */
.solutions {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.solution-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

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

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    margin-bottom: 25px;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-light);
}

.solution-features li i {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.solution-cta {
    text-align: center;
}

.btn-solution {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Operational Flow */
.operational-flow {
    padding: 100px 0;
    background: white;
    position: relative;
}

.flow-header {
    text-align: center;
    margin-bottom: 80px;
}

.flow-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.flow-visual {
    text-align: center;
    position: sticky;
    top: 120px;
}

.coffee-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.coffee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.coffee-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.coffee-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.flow-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.flow-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.flow-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.flow-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flow-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Carousel */
.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.dashboard-carousel {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.dashboard-slide {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.dashboard-slide:hover .dashboard-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dashboard-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0,0,0,0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin-top: -25px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.8);
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background: var(--bg-gradient);
    color: white;
    text-align: center;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cta-final .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.cta-final .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-final .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    header .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    }

    header .nav-list.active {
        display: flex;
        max-height: 500px;
        padding: 10px 0;
    }

    header .nav-list li {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    header .nav-list li a::after {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .flow-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .flow-visual {
        position: static;
    }

    .demo-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .demo-tabs {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .flow-stats {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1.1rem;
    }

    .floating-card {
        display: none;
    }
}



/* ===== AJUSTE: título estático, sem animações ===== */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
}

.hero-title span {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
}


/* Estilos do menu dropdown Soluções */
.nav-list li.details-item {
  position: relative;
}

/* Força o details a se comportar como item de navegação inline */
.nav-list details {
  display: inline-block;
}

/* Estilo do summary (botão do dropdown) */
.nav-list summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  outline: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: var(--transition);
}

/* Remove marcador padrão do summary */
.nav-list summary::-webkit-details-marker { display: none; }
.nav-list summary::marker { display: none; }

/* Ícone da setinha */
.nav-list summary .caret {
  margin-left: 2px;
  font-size: .8em;
  transition: transform .2s ease;
  display: inline-block;
}

.nav-list summary .caret::before {
  content: '▼';
}

/* Gira caret quando aberto */
.nav-list details[open] summary .caret {
  transform: rotate(180deg);
}

/* Hover no summary */
.nav-list summary:hover {
  color: var(--primary-color);
}

.nav-list summary::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-list summary:hover::after {
  width: 100%;
}

/* Submenu (lista interna) */
.nav-list .submenu {
  margin-top: 10px;
  background: var(--bg-white);
  border: 1px solid rgba(40, 167, 69, 0.1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 8px 0;
  min-width: 220px;
}

/* Links do submenu */
.nav-list .submenu a {
  display: block;
  padding: 10px 14px;
  color: var(--text-dark);
  font-size: 15px;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}

/* Hover nos links do submenu */
.nav-list .submenu a:hover {
  background: rgba(40, 167, 69, 0.05);
  color: var(--primary-color);
}

/* Em telas largas, o submenu "flutua" sob o item. 
   Em mobile, ele acompanha o fluxo da UL normalmente. */
@media (min-width: 993px) {
  .nav-list li.details-item { position: relative; }
  .nav-list details .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1002;
  }
}

/* Acessibilidade e fallback de estilo */
.nav-list summary:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* === MENU (subpágina) — REMOVER sublinhado dos itens do menu === */
#main-header .nav-list > li > a::after,
#main-header .nav-list > li > details > summary::after,
#main-header .nav-list a::after,
#main-header .details-item summary::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  transition: none !important;
}

/* Evita regras de :hover / [open] reativarem a linha */
#main-header .nav-list > li > a:hover::after,
#main-header .nav-list > li > a.active::after,
#main-header .nav-list > li > details[open] > summary::after,
#main-header .nav-list > li > details > summary:hover::after {
  width: 0 !important;
}

/* Mantém apenas UM caret no "Soluções" */
#main-header .nav-list > li > details > summary::-webkit-details-marker,
#main-header .nav-list > li > details > summary::marker { display: none !important; content: "" !important; }
#main-header .nav-list > li > details > summary { list-style: none !important; }
#main-header .nav-list > li > details > summary .caret::before { content: none !important; }

