:root {
    --primary: #008080;
    --primary-dark: #006666;
    --secondary: #F4A460;
    --accent: #000080;
    --bg: #FDF5E6;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #5d6d7e;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

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

.logo i {
    font-size: 1.8rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-small {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

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

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
}

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

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

/* Sections General */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.section-header h2 span {
    color: var(--primary);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7f7 0%, #fff 100%);
    padding-top: 180px;
    min-height: 90vh;
}

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

.badge {
    display: inline-block;
    background: rgba(0, 128, 128, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--accent);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.08) 0%, rgba(0, 160, 233, 0.05) 100%);
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.15);
    margin-bottom: 35px;
    transition: var(--transition);
    animation: fadeInSlide 0.8s ease-out forwards;
}

.hero-trust-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.12) 0%, rgba(0, 160, 233, 0.08) 100%);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.1);
}

.hero-trust-badge i {
    font-size: 1.4rem;
    color: var(--primary);
}

.hero-trust-badge p {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-trust-badge p span {
    color: var(--primary);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 10px;
    text-align: right;
    font-style: italic;
}

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

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

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

/* Problem Section */
.problem {
    background: var(--white);
}

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

.problem-card {
    background: #fdfaf5;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(244, 164, 96, 0.1);
}

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

.problem-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

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

/* Solution Section */
.solution {
    background: var(--bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.solution-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.solution-content h2 span {
    color: var(--primary);
}

.benefit-list {
    list-style: none;
    margin-top: 35px;
}

.benefit-list li {
    display: flex;
    gap: 15px;
    /* Reduced gap from 20px */
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-list i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.flow-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step-wrapper {
    flex: 1;
    max-width: 260px;
    z-index: 2;
}

.step-card-premium {
    background: white;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 160, 233, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 440px;
    border: 1px solid rgba(0, 160, 233, 0.05);
    transition: var(--transition);
}

.step-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 160, 233, 0.15);
}

.step-image-box {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fdff;
}

.step-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-card-premium:hover .step-image-box img {
    transform: scale(1.05);
}

.step-content {
    margin-top: 10px;
}

.step-content.top {
    margin-top: 0;
    margin-bottom: 20px;
}

.step-dot-indicator {
    width: 12px;
    height: 12px;
    border: 3px solid #00A0E9;
    border-radius: 50%;
    background: white;
    margin: 0 auto 15px;
}

.step-card-premium h3 {
    color: #00A0E9;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.step-card-premium p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .flow-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .connector-arrow {
        display: none;
    }

    .step-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .step-card-premium {
        min-height: auto;
        padding: 40px;
    }
}

/* Pilot Section */
.pilot {
    padding-bottom: 0;
}

.pilot-wrapper {
    background: #E3F2FD;
    padding: 80px;
    border-radius: 40px 40px 0 0;
    color: var(--accent);
    text-align: center;
}

.pilot-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pilot-content h2 span {
    color: var(--primary);
}

.pilot-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
}

.pilot-form input {
    padding: 18px 25px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 128, 0.1);
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.pilot-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: rgba(0, 43, 43, 0.95);
    /* 45% transparency for better harmony */
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info p {
    font-size: 1.5rem;
    /* Increased 50% for visibility */
    opacity: 0.9;
    line-height: 1.4;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    /* Increased 50% from 1.2rem */
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
    /* Increased 50% for visibility */
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-reveal="left"] {
    transform: translateX(-50px);
}

[data-reveal="right"] {
    transform: translateX(50px);
}

[data-reveal="bottom"] {
    transform: translateY(50px);
}

[data-reveal="scale"] {
    transform: scale(0.9);
}

.revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {

    .hero-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .hero-image {
        order: -1;
    }

    .floating-stats {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .pilot-wrapper {
        padding: 40px 20px;
    }

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

/* Video Container & Placeholder */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    margin-bottom: 20px;
}

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

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #002b2b 0%, #004d4d 100%);
    color: white;
    cursor: pointer;
    text-align: center;
    padding: 20px;
}

.video-placeholder.alternate {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(244, 164, 96, 0.4);
    transition: var(--transition);
}

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

.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Invisible Loss Section */
.invisible-loss {
    background: #fff;
    padding: 100px 0;
}

.section-subtitle {
    color: var(--text-light);
    margin-top: -10px;
    margin-bottom: 60px;
    font-size: 1.1rem;
    text-align: center;
}

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

.stat-item {
    padding: 30px;
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

/* ROI Calculator */
.roi-calculator {
    background: var(--bg);
    padding: 100px 0;
}

.calculator-wrapper {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--accent);
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.result-card {
    background: #f8fdff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.result-card.highlight {
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    color: white;
}

.result-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 100px 0;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

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

/* Technical Proof */
.technical-proof {
    padding: 100px 0;
    background: #fff;
}

.technical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-features {
    list-style: none;
    margin-top: 30px;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent);
}

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

/* Badge secondary */
.badge.secondary {
    background: rgba(244, 164, 96, 0.1);
    color: var(--secondary);
}

/* Responsive Updates */
@media (max-width: 991px) {

    .calculator-body,
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-video-box {
        order: -1;
        margin-bottom: 40px;
    }
}

/* Dashboard Section */
.dashboard {
    background: #fff;
    padding: 100px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.dashboard-features {
    list-style: none;
    margin-top: 35px;
}

.dashboard-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-features i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.browser-mockup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-mockup.luxury {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.browser-header {
    background: #f1f3f4;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-address {
    margin-left: 20px;
    background: #fff;
    font-size: 0.75rem;
    padding: 2px 15px;
    border-radius: 4px;
    color: #94a3b8;
    flex-grow: 1;
    max-width: 200px;
}

.browser-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.browser-header .dot:nth-child(1) {
    background: #ff5f56;
}

.browser-header .dot:nth-child(2) {
    background: #ffbd2e;
}

.browser-header .dot:nth-child(3) {
    background: #27c93f;
}

/* Dashboard Simplified (Latest Reference) */
.dashboard-ui.simplified {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 500px;
    background: #fff;
}

.ui-header-pague {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #f1f5f9;
}

.ui-logo-pague {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

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

.theme-toggle {
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    gap: 10px;
}

.menu-btn-ui {
    background: #f8fafc;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: var(--accent);
}

.ui-main-pague {
    padding: 40px 30px;
}

.content-header-pague {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
}

.content-header-pague h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.content-header-pague p {
    font-size: 0.9rem;
    color: #64748b;
}

.btn-solicitar {
    background: #eff6ff;
    color: #3b82f6;
    border: 1px solid #dbeafe;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-solicitar:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

.ui-table-pague-container {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.ui-table-pague {
    width: 100%;
    border-collapse: collapse;
}

.ui-table-pague th {
    text-align: left;
    padding: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: #fdfdfd;
    border-bottom: 1px solid #f1f5f9;
}

.ui-table-pague td {
    padding: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid #f8fafc;
}

.status-pill-pague {
    display: inline-block;
    padding: 6px 15px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #dcfce7;
}

.ui-footer-pague {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-pague-links {
    display: flex;
    gap: 20px;
}



@media (max-width: 991px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .dashboard-features li {
        text-align: left;
    }
}

/* ROI CALCULATOR REBUILD - REFERENCE IMAGE MATCH */
.calculator-wrapper .calculator-body {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    align-items: stretch;
}

.calculator-wrapper .input-group label {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.calculator-wrapper .input-group input {
    border: 1px solid #e2e8f0;
    padding: 18px;
    font-size: 1.2rem;
    color: #334155;
    background: #fff;
}

.calculator-results-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-card-revenue {
    background: #f8fdff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.result-card-revenue h3 {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 15px;
}

.result-value-large {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin-bottom: 5px;
}

.result-card-revenue p {
    color: #64748b;
    font-size: 0.95rem;
}

.result-grid-profit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: 100%;
}

.result-card-profit {
    background: #008080;
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-card-profit h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.result-card-profit .result-value {
    font-size: 1.54rem;
    /* Reduzido para 70% de 2.2rem para melhor hierarquia */
    font-weight: 800;
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.negative {
    color: #ff3b3b !important;
    /* Vermelho vibrante para valores negativos */
}

.calculator-footer-note {
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left; 
    background: #fffdf5; 
    padding: 25px; 
    border-radius: 8px; 
    border-left: 6px solid #fadb14;
}

@media (max-width: 991px) {
    .calculator-wrapper .calculator-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calculator-wrapper .number-input-wrapper {
        width: 100%;
    }
    
    .footer-note-columns {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

@media (max-width: 530px) {
    .container {
        padding: 0 1rem;
    }

    .ctrl-btn {
        width: 42px;
        height: 48px;
    }

    .calculator-wrapper {
        padding: 25px 10px;
        width: 100%;
        overflow: hidden;
    }

    .number-input-wrapper {
        width: 100% !important;
    }

    .number-input-wrapper input {
        padding: 12px 5px !important;
        font-size: 1rem;
    }

    .result-value-large {
        font-size: 2rem;
    }

    .result-grid-profit {
        gap: 10px;
    }

    .result-card-profit {
        padding: 15px 5px;
    }

    .result-card-profit .result-value {
        font-size: 1.2rem;
    }
}

/* CUSTOM NUMBER INPUTS STYLE */
.number-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
}

.number-input-wrapper input {
    border: none !important;
    border-left: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    text-align: center;
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    padding: 15px 10px !important;
    flex-grow: 1;
    width: 0 !important;
    /* Forces flex-grow to handle width and overrides global 100% */
    min-width: 0;
    /* Allows shrinking on very small screens */
    margin: 0 !important;
    -moz-appearance: textfield;
    appearance: textfield;
}

.number-input-wrapper input::-webkit-outer-spin-button,
.number-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ctrl-btn {
    width: 60px;
    height: 55px;
    background: #f1f5f9;
    border: none;
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents buttons from being squished */
}

.ctrl-btn:hover {
    background: #e2e8f0;
}


.ctrl-btn.plus {
    border-left: 1px solid #e2e8f0;
}

/* About Section */
.about {
    background: #f8fdff;
    padding: 100px 0;
}

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

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat strong {
    font-size: 2rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.about-stat span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Custom Select */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    background: #fff;
    cursor: pointer;
    appearance: none;
    transition: var(--transition);
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

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

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

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

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* Pricing / Plans Section */
.profit-plans {
    padding: 100px 0;
    background-color: #636363;
}

.profit-plans .section-header h2 {
    color: white;
}

.profit-plans .section-header p {
    color: #e0e0e0;
}

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

.pricing-card {
    position: relative;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-body {
    background: white;
    margin-top: 3.5rem;
    padding: 120px 30px 40px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-header {
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border-radius: 4px;
}

.pricing-header h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 800;
}

.pricing-header h2 {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.pricing-header p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-label {
    font-size: 0.7rem;
    font-weight: 300;
}

.btn-pricing {
    display: block;
    text-align: center;
    color: white;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-pricing:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

/* Modal Specific Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: transparent;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-close-modal:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

/* Ensure calculator wrapper blends nicely without margins in the modal */
.modal-container .calculator-wrapper {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
}