/* ===================================
   HEADER NAVIGATION
   =================================== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar-brand a {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.btn-header {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(130, 10, 209, 0.2);
}

.btn-header:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 10, 209, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 149, 51, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.08;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(130, 10, 209, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.hero h1 .highlight-yellow {
    color: white;
    background: var(--primary);
    padding: 8px 20px;
    position: relative;
    display: inline-block;
    font-weight: 900;
    border-radius: 4px;
    box-shadow: 0 3px 0 rgba(255, 122, 0, 0.3);
    transform: rotate(-1deg);
}

.hero-content-centered {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero .lead {
    font-size: 1.35rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(130, 10, 209, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(130, 10, 209, 0.1);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(130, 10, 209, 0.08);
    border-color: rgba(130, 10, 209, 0.2);
    transform: translateX(4px);
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.btn-primary-teal {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(130, 10, 209, 0.25);
}

.btn-primary-teal:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(130, 10, 209, 0.35);
    color: white;
}

.btn-outline-blue {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-outline-blue:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(130, 10, 209, 0.2);
}

/* Price Tag */
.price-tag {
    background: white;
    border: 2px solid var(--primary);
    padding: 20px 40px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(22,160,133,0.1);
}

.price-tag .label {
    font-size: 0.95rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.price-tag .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
}

.price-tag .period {
    font-size: 1.3rem;
    color: var(--text);
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-badge {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

/* Screenshot Container */
.screenshot-container {
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.screenshot-container img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* ===================================
   MODULE CARDS
   =================================== */
.module-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(22,160,133,0.12);
}

.module-card:hover::before {
    opacity: 1;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
}

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

.module-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #F3E8FF;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(130,10,209,0.15);
}

/* ===================================
   IMAGE SHOWCASE
   =================================== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.showcase-item {
    position: relative;
}

.showcase-item.large {
    grid-column: span 2;
}

.showcase-frame {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.showcase-frame:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.showcase-frame img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.showcase-label {
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(22,160,133,0.3);
}

.placeholder-image {
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-light);
    flex-direction: column;
    gap: 15px;
    border: 2px dashed var(--border);
}

.placeholder-image i {
    font-size: 3.5rem;
    color: var(--secondary);
    opacity: 0.4;
}

.placeholder-image h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.placeholder-image p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===================================
   DEMO CTA SECTION
   =================================== */
.demo-cta-section {
    max-width: 700px;
    margin: 0 auto;
}

.demo-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(130, 10, 209, 0.15);
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.demo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 10px 30px rgba(130, 10, 209, 0.3);
}

.demo-icon i {
    font-size: 3rem;
    color: white;
}

.demo-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.demo-card > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.demo-benefits {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.demo-benefits li {
    padding: 16px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.demo-benefits i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
    margin-top: 24px;
}

/* ===================================
   PRICING CARDS
   =================================== */
.pricing-card {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 48px 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(130, 10, 209, 0.18);
}

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 12px 48px rgba(130, 10, 209, 0.15);
    background: linear-gradient(180deg, rgba(130, 10, 209, 0.02) 0%, white 100%);
}

.pricing-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(130,10,209,0.3);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--promo-bg);
    color: var(--promo-text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(146,64,14,0.15);
}

.promo-badge i {
    margin-right: 4px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.module-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(130, 10, 209, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 32px;
    border: 1px solid rgba(130, 10, 209, 0.2);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.plan-price small {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.plan-features li {
    padding: 15px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.plan-features i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22,160,133,0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #E66A00 0%, #FF7A00 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), #FFA85C);
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 32px;
}

.footer-company {
    margin-top: 32px;
}

.footer-company p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-company i {
    color: white;
}

.company-experience {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-left: 28px;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links i {
    font-size: 0.7rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: white;
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    border-color: white;
}

.footer-social i {
    font-size: 1.2rem;
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
    color: white;
}

/* ===================================
   BLOG STYLES
   =================================== */
.blog-post-card {
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--dark);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.6rem;
}

.entry-content h4 {
    font-size: 1.3rem;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content img {
    border-radius: 8px;
    margin: 30px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--secondary);
}

.post-navigation a:hover {
    background: var(--primary);
    color: white;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .navbar {
        padding: 0 24px;
    }

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

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 24px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }

    .navbar-menu.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .btn-header {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

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

    .section-title {
        font-size: 2.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .navbar-brand a {
        font-size: 1.5rem;
    }

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

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .hero .lead {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }

    .hero-badges {
        gap: 12px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 20px;
    }

    .btn-primary-teal,
    .btn-outline-blue {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .hero-note {
        font-size: 0.8rem;
        margin-bottom: 32px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 48px;
    }

    .hero-feature-item {
        padding: 14px 16px;
    }

    .hero-feature-item i {
        font-size: 1.3rem;
    }

    .hero-feature-item span {
        font-size: 0.9rem;
    }

    .trust-badges {
        gap: 40px;
        margin-top: 48px;
        padding-top: 32px;
    }

    .trust-number {
        font-size: 2rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .demo-card {
        padding: 40px 30px;
    }

    .demo-icon {
        width: 80px;
        height: 80px;
    }

    .demo-icon i {
        font-size: 2.5rem;
    }

    .demo-card h3 {
        font-size: 1.6rem;
    }

    .demo-card > p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .price-tag .amount {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .plan-price {
        font-size: 3rem;
    }
    
    .module-card {
        padding: 30px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .entry-content h2 {
        font-size: 1.6rem;
    }
    
    .entry-content h3 {
        font-size: 1.3rem;
    }

    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-brand h3 {
        font-size: 1.6rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-top: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   HERO - NOVO DESIGN
   =================================== */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-badges {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: scale(1.05);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

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

/* ===================================
   THREE STEPS SECTION
   =================================== */
.three-steps {
    padding: 100px 0;
}

.step-container {
    margin-bottom: 80px;
}

.step-container:last-child {
    margin-bottom: 0;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

.step-image {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.step-image img {
    width: 100%;
    border-radius: 8px;
}

/* ===================================
   PRICING - CONTRATO ANUAL
   =================================== */
.plan-billing {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-billing strong {
    color: var(--primary);
}

.contract-badge {
    background: #F3E8FF;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid rgba(130,10,209,0.15);
}

.contract-badge i {
    margin-right: 6px;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
    }
}
