:root {
    --primary: #06327c;
    --primary-dark: #0052d4;
    --primary-light: #e6f0ff;
    --secondary: #78b140;
    --accent: #ff6b82;
    --accent-light: #ffeef1;
    --dark: #121826;
    --gray-dark: #2d3748;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #07317e 0%, #85b2ff 100%);
    --gradient-light: linear-gradient(135deg, #e6f0ff 0%, #e0f7f2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: #000;
    transform: translateY(-3px);
}

/* Header Moderno */
header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin-bottom: 0px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active:after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff; /* ajuste conforme o layout */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Moderno */
.hero {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23ffffff" opacity="0.8"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-element:nth-child(2) {
    top: 10%;
    right: -10%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Sobre Nós */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.about-feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--gray);
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Especialidades */
.specialties {
    background-color: var(--gray-light);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.specialty-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    cursor: pointer;
    border: 1px solid transparent;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
}

/* Benefícios */
.benefits {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 1rem;
}
/* Layout Compacto de Planos - Mantendo todos os textos originais */
.plans-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.plan-card-compact {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card-compact.featured {
    border: 2px solid var(--secondary);
    transform: translateY(-5px);
}

.plan-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-header-compact {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

.plan-badge-compact {
    position: absolute;
    top: -12px;
    right: -10px;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
    z-index: 2;
}

.plan-name-compact {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.plan-price-compact {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.plan-period-compact {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.plan-features-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.features-column-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--gray-dark);
}

.feature-item-compact i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item-compact.highlight {
    background: var(--primary-light);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 600;
}

.feature-item-compact.highlight i {
    color: var(--primary);
}

.plan-extra-compact {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(123, 31, 162, 0.1) 100%);
    border-radius: var(--radius-sm);
    border-left: 3px solid #9c27b0;
}

.extra-feature-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #7b1fa2;
    margin-bottom: 8px;
}

.extra-feature-compact i {
    color: #9c27b0;
}

.extra-note-compact {
    font-size: 0.8rem;
    color: var(--gray);
    padding-left: 24px;
}

.extra-note-compact i {
    margin-right: 5px;
}

.plan-action-compact {
    margin-top: auto;
}

.btn-compact {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .plans-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .plan-card-compact.featured {
        transform: none;
    }
    
    .plan-features-compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .plan-price-compact {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .plan-card-compact {
        padding: 15px;
    }
    
    .plan-price-compact {
        font-size: 1.8rem;
    }
    
    .plan-name-compact {
        font-size: 1.1rem;
    }
    
    .feature-item-compact {
        font-size: 0.8rem;
    }
    
    .btn-compact {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}
/* Depoimentos */
.testimonials {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.7;
}

/* FAQ */
.faq {
    background-color: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-icon {
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-description {
    color: #a0aec0;
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Chat Bot */
.chat-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content, .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text p, .about-text p {
        max-width: 100%;
    }

    .hero:before {
        width: 100%;
        opacity: 0.5;
    }

    .hero-stats, .about-features {
        justify-content: center;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .benefits-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .specialties-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 70px 0;
    }

    .floating-element {
        display: none;
    }
}

.logo img {
    width: 300px;
}

.footer-logo img {
    width: 280px;
}

/* Grid de 4 colunas para vantagens */
.vantagens-grid-4-colunas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.vantagem-card-compact {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vantagem-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.vantagem-icon-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vantagem-numero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.vantagem-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.vantagem-title {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    min-height: 32px;
}

.vantagem-descricao {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 8px;
}

.vantagem-lista {
    margin-bottom: 10px;
    flex-grow: 1;
}

.item-lista {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 21px;
}

.item-lista i {
    color: var(--secondary);
    font-size: 0.6rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.item-lista strong {
    color: var(--dark);
    font-weight: 600;
}

.vantagem-total {
    background: rgba(0, 200, 150, 0.1);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 14px;
}

.vantagem-total i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.vantagem-total strong {
    color: var(--secondary);
    font-weight: 700;
}

.vantagem-valor {
    background: rgba(0, 102, 255, 0.1);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.vantagem-valor i {
    color: var(--primary);
    font-size: 0.8rem;
}

.vantagem-valor strong {
    color: var(--primary);
    font-weight: 700;
}

.vantagem-nota {
    background: rgba(255, 107, 130, 0.05);
    border-radius: 5px;
    padding: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.2;
    border-left: 2px solid var(--accent);
}

.vantagem-nota i {
    color: var(--accent);
    font-size: 0.7rem;
    margin-top: 1px;
}

/* Responsividade para 4 colunas */
@media (max-width: 1024px) {
    .vantagens-grid-4-colunas {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .vantagem-card-compact {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .vantagens-grid-4-colunas {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .vantagem-title {
        font-size: 0.8rem;
        min-height: auto;
    }
    
    .item-lista {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .vantagem-card-compact {
        padding: 10px;
    }
    
    .vantagem-title {
        font-size: 0.75rem;
    }
    
    .item-lista {
        font-size: 0.7rem;
    }
}

.vantagens-compact-modern {
    padding: 80px 0px 30px 0px;
}

.chamada005 {
    font-size: 28px !important;
    line-height: 35px !important;
    color: #000 !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.chamada005 .valor {
    font-size: 40px !important;
}

/* Seção de Autenticação */
.auth-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e9f2ff 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.auth-box {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

#registerBox {
    max-width: 800px;
}

.auth-header {
    background: var(--gradient);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.auth-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.auth-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.auth-header p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.auth-form {
    padding: 30px;
}

/* Formulários */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-light);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4 i {
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-dark);
}

label i {
    color: var(--primary);
    font-size: 0.9rem;
}

input,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--gray-dark);
    background: var(--white);
    transition: var(--transition);
    margin-bottom: 15px;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

input::placeholder {
    color: #a0aec0;
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--primary);
}

.password-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--gray);
}

/* Checkbox e Options */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Divisor */
.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-light);
}

.auth-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
}

/* Botões */
.btn-auth {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn-auth {
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .auth-box {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .auth-form {
        padding: 25px;
    }
    
    .auth-header {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 40px 20px;
    }
    
    .auth-form {
        padding: 20px;
    }
    
    .auth-header {
        padding: 20px;
    }
    
    .auth-header h3 {
        font-size: 1.5rem;
    }
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--gray-dark);
    background: var(--white);
    transition: var(--transition);
}

.specialty-card h4 {
    font-size: 17px;
    word-wrap: break-word;
}

.rep-container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
    
    .rep-row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    
    /* Colunas */
    .rep-col-3 {
        flex: 0 0 25%;
        max-width: 25%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .rep-col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .rep-col-9 {
        flex: 0 0 75%;
        max-width: 75%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .rep-col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    /* Dashboard Header */
    .rep-dashboard-header {
        background: linear-gradient(135deg, #05337e 0%, #213777 50%, #77b140 100%);
        padding: 2rem;
        border-radius: 20px;
        color: white;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        position: relative;
        overflow: hidden;
    }
    
    .rep-dashboard-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rep-pulse 15s infinite linear;
    }
    
    @keyframes rep-pulse {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .rep-dashboard-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        position: relative;
    }
    
    .rep-dashboard-subtitle {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 0;
        position: relative;
    }
    
    /* Área de Compartilhamento */
    .rep-compartilhar-area {
        background: white;
        border-radius: 15px;
        padding: 1.8rem;
        box-shadow: 0 5px 25px rgba(26,42,108,0.08);
        margin-bottom: 2rem;
        border: 1px solid rgba(26,42,108,0.05);
    }
    
    .rep-compartilhar-titulo {
        font-size: 18px;
        font-weight: 600;
        color: #1a2a6c;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
    }
    
    .rep-compartilhar-titulo i {
        margin-right: 10px;
        color: #1a2a6c;
    }
    
    .rep-copy-link-container {
        background: #f5f7ff;
        border: 2px solid #e8ecfd;
        padding: 12px 18px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s;
    }
    
    .rep-copy-link-container:hover {
        border-color: #1a2a6c;
        background: #ffffff;
    }
    
    .rep-link-text {
        font-size: 15px;
        color: #1e293b;
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    
    .rep-btn-copy {
        background: linear-gradient(135deg, #05337e 0%, #213777 50%, #77b140 100%);
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .rep-btn-copy:hover {
        transform: translateY(-2px);
    }
    
    .rep-btn-copy i {
        font-size: 16px;
    }
    
    .rep-alert-success {
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        border-left: 6px solid #2e7d32;
        color: #1e3b1e;
        padding: 15px 20px;
        border-radius: 12px;
        margin-top: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .rep-alert-success i {
        color: #2e7d32;
        font-size: 20px;
    }
    
    .rep-compartilhar-info {
        color: #64748b;
        margin-top: 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .rep-compartilhar-info i {
        color: #1a2a6c;
    }
    
    /* Cards de Estatísticas */
    .rep-stats-card {
        background: white;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 25px rgba(26,42,108,0.06);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(26,42,108,0.03);
        margin-bottom: 1.5rem;
    }
    
 .rep-stats-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #05337e, #77b140);
    transform: scaleX(0);
    transition: transform 0.4s;
}
    
    .rep-stats-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(26,42,108,0.15);
    }
    
    .rep-stats-card:hover::after {
        transform: scaleX(1);
    }
    
    .rep-stats-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        background: linear-gradient(135deg, #05337e 0%, #213777 50%, #77b140 100%);
        color: white;
        border-radius: 18px;
        font-size: 28px;
        margin-bottom: 1.5rem;
        transform: rotate(5deg);
        transition: transform 0.3s;
    }
    
    .rep-stats-card:hover .rep-stats-icon {
        transform: rotate(0deg) scale(1.1);
    }

    
    .rep-stats-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        margin: 0;
        line-height: 1.2;
        font-family: 'Poppins', sans-serif;
    }
    
    .rep-stats-label {
        color: #475569;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
        margin-top: 5px;
    }
    
    .rep-stats-trend {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #e2e8f0;
        font-size: 13px;
    }
    
    .rep-trend-up {
        color: #059669;
    }
    
    .rep-trend-waiting {
        color: #d97706;
    }
    
    /* Menu Lateral Representante */
    .rep-menu-lateral {
        background: white;
        border-radius: 20px;
        padding: 2rem 1.2rem;
        box-shadow: 0 8px 25px rgba(26,42,108,0.06);
        position: sticky;
        top: 20px;
        border: 1px solid rgba(26,42,108,0.03);
    }
    
    .rep-profile-box {
        text-align: center;
        margin-bottom: 1.8rem;
    }
    
    .rep-profile-avatar {
        width: 100px;
        height: 100px;
        border-radius: 20px;
        border: 4px solid #fff;
        box-shadow: 0 10px 25px rgba(26,42,108,0.15);
        margin-bottom: 1rem;
        transition: all 0.3s;
    }
    
    .rep-menu-lateral:hover .rep-profile-avatar {
        transform: scale(1.05);
        border-color: #05337e;
    }
    
    .rep-profile-name {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 10px;
    }
    
    .rep-profile-id {
        color: #64748b;
        font-size: 13px;
        font-weight: 500;
        padding: 4px 12px;
        background: #f1f5f9;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .rep-menu-divider {
        margin: 1.5rem 0;
        border: 0;
        border-top: 2px dashed #e2e8f0;
    }
    
    .rep-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .rep-menu-item {
        margin-bottom: 0.5rem;
    }
    
    .rep-menu-link {
        display: flex;
        align-items: center;
        padding: 14px 18px;
        color: #334155;
        text-decoration: none;
        border-radius: 14px;
        transition: all 0.3s;
        font-weight: 500;
        gap: 12px;
    }
    
    .rep-menu-link i {
        width: 22px;
        text-align: center;
        font-size: 18px;
    }
    
    .rep-menu-link:hover,
    .rep-menu-link.rep-active {
        background: linear-gradient(135deg, #05337e 0%, #213777 50%, #77b140 100%);
        color: white;
        transform: translateX(5px);
    }
    
    .rep-menu-link:hover i,
    .rep-menu-link.rep-active i {
        color: white;
    }
    
    /* Card de Desempenho */
    .rep-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(26,42,108,0.06);
        border: none;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }
    
    .rep-card-header {
        background: white;
        padding: 1.5rem 1.8rem;
        border-bottom: 1px solid rgba(26,42,108,0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .rep-card-title {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rep-card-title2 {
        font-size: 26px;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .rep-card-title i {
        color: #1a2a6c;
    }
    
    .rep-card-body {
        padding: 1.8rem;
    }
    
    /* Métricas de Desempenho */
    .rep-metrica-item {
        text-align: center;
        padding: 1rem;
    }
    
    .rep-metrica-valor {
        font-size: 28px;
        font-weight: 800;
        color: #1a2a6c;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
    }
    
    .rep-metrica-label {
        color: #64748b;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Tabela de Vendas */
    .rep-table-responsive {
        overflow-x: auto;
    }
    
    .rep-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .rep-table thead th {
        background: #f8fafc;
        padding: 15px 20px;
        color: #1a2a6c;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .rep-table tbody td {
        padding: 15px 20px;
        color: #334155;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .rep-table tbody tr:hover {
        background: #f8fafc;
    }
    
    .rep-badge {
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
    }
    
    .rep-badge-success {
        background: linear-gradient(135deg, #059669, #10b981);
        color: white;
    }
    
    .rep-badge-warning {
        background: linear-gradient(135deg, #d97706, #f59e0b);
        color: white;
    }
    
    .rep-btn-outline {
        background: transparent;
        border: 2px solid #1a2a6c;
        color: #1a2a6c;
        padding: 8px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .rep-btn-outline:hover {
        background: #1a2a6c;
        color: white;
        text-decoration: none;
    }
    
    /* Utilitários */
    .rep-text-center { text-align: center; }
    .rep-mb-4 { margin-bottom: 1.8rem; }
    .rep-mt-4 { margin-top: 1.8rem; }
    .rep-mb-3 { margin-bottom: 1.2rem; }
    .rep-mt-3 { margin-top: 1.2rem; }
    .rep-mb-0 { margin-bottom: 0; }
    .rep-mx-auto { margin-left: auto; margin-right: auto; }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .rep-col-3, .rep-col-6, .rep-col-9 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .rep-menu-lateral {
            position: relative;
            top: 0;
            margin-bottom: 1.8rem;
        }
        
        .rep-dashboard-title {
            font-size: 24px;
        }
    }

.page-section {
    padding: 80px 0px;
}

.form-actions .btn-auth {
    margin-bottom: 0;
    width: max-content;
    padding: 17px 35px;
}


.saldoAtivo .valorAtivo {
    color: #000;
    font-size: 18px;
}

.saldoAtivo .valorAtivo {
    color: green;
    font-size: 23px;
}

.ButtonSaque {
    background: #05337e;
    border: 1px solid #05337e;
    color: #Fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 9px;
    padding: 10px 45px;
    border-radius: 100px;
}

.ButtonSaque:hover {
    background: #77b140;
    border: 1px solid #77b140;
    color: #Fff;
}

.tela-pagamento .formAssinatura .form-control {
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #000 !important;
    padding: 0px 25px;
    color: #000;
    height: 58px;
}
.tela-pagamento .formAssinatura label {
    font-weight: 600;
    color: #252c41;
    font-size: 15px;
}
.tela-pagamento .btn-default {
    font-family: 'Lexend', sans-serif;
    width: 100%;
    background: -webkit-linear-gradient(45deg, #000 15%, #000 65%);
    border: 1px solid #000;
    color: #fff;
    font-size: 21px;
    padding: 15px;
    border-radius: 7px;
    font-weight: 500;
    cursor: pointer;
    height: auto;
    margin-top: 2%;
}
.tela-pagamento .btn-default:hover {
  background: -webkit-linear-gradient(45deg, #ffc107 15%, #ffc107 65%);
  border: 1px solid #ffc107;
  color: #000;
}
.tela-pagamento .pricing-body {
    min-height: 290px;
}
.tela-pagamento .step {
    display: none;
}
.tela-pagamento .step.active {
    display: block;
}
.tela-pagamento .bandeira-pagamento {
  width: 70%;
  margin-bottom: 5px;
}
.tela-pagamento .bandeira-selo {
    width: 32%;
    margin-top: 5%;
}
.tela-pagamento .voltar {
    position: absolute;
    font-size: 14px;
    background: #2b2b2c;
    padding: 6px 10px;
    border-radius: 30px;
    cursor: pointer;
    color: #fff;
    top: 10px
}
.tela-pagamento h3, .tela-pagamento p {
  color: #000;
  margin-bottom: 0px;
}
.tela-pagamento {
  padding: 50px 0px;
}
.tela-pagamento .card-header {
  background: #622345;
  padding: 20px;
  height: 101px;
}
.tela-pagamento .card-header h2 {
  color: #fff !important;
  margin-bottom: 0px;
  font-size: 30px;
  font-weight: 400;
}
.tela-pagamento .card-body {
  padding: 26px 30px;
}
.tela-pagamento .list-unstyled i {
  color: green;
}
.tela-pagamento .list-unstyled li {
  margin-bottom: 6px;
}
.tela-pagamento .valorPlano {
  font-size: 38px;
  color: #782a4f !important;
  font-weight: 400;
}
.formas_pagamento {
  margin-bottom: 40px;
}
.checkout-payment .lblPagamento {
    font-weight: 600;
    margin-bottom: 7px;
    width: 100%;
    text-align: center;
    padding: 20px 0px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.checkout-payment .lblPagamento .fal {
    display: block;
    color: #000;
    font-size: 50px;
    margin-bottom: 10px;
}
.checkout-payment .lblPagamento img {
  height: 46px;
  width: 100%;
  margin-bottom: 15px;
}
.checkout-payment .lblPagamento span {
    font-weight: 700;
    line-height: 15px;
    color: #000;
}
.checkout-payment .formas_pagamento .ativo label {
  color: #ffffff;
  background: #000;
  border-color: #ffffff;
}
.checkout-payment .formas_pagamento .ativo label .fal, .checkout-payment .formas_pagamento .ativo label span {
    color: #fff;
    line-height: 15px;
}
.checkout-payment .input-group-text {
    width: 45px;
    height: 58px;
    margin-right: -2px;
    border-radius: 5px 0px 0px 5px;
    font-size: 14px;
}
.checkout-payment .formulario .row {
    margin-bottom: 15px;
}
.checkout-payment .voltar {
    float: left;
    margin: 0px 15px 0px 0px;
    font-size: 14px;
    background: #2b2b2c;
    padding: 6px 10px;
    border-radius: 7px;
    cursor: pointer;
    color: #fff;
}
.categoriasStyle label {
    display: block;
}
.categoriasStyle label.ativo .category-item {
    background: #ff1d4d;
    border: 1px solid #ff1d4d;
    color: #fff;
    position: relative;
}
.categoriasStyle label.ativo .category-item::before {
    content: '\2713';
    position: absolute;
    right: -4px;
    top: -10px;
    font-size: 35px;
    background: green;
    width: 40px;
    height: 40px;
    line-height: 43px;
    border-radius: 100px;
}
.categoriasStyle label input[type="checkbox"],
.categoriasStyle label input[type="radio"] {
    display: none;
}
.valorPix {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
}

.tituloPagamento {
    color: green;
    text-align: center;
    font-size: 40px;
    margin-bottom: 25px;
    display: block;
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
}

.page-section00 {
  padding: 80px 0px;
}

.pagarAgora img {
  width: 400px;
}

.escolherBloco .lblPagamento i {
    color: #000;
}

.escolherBloco.ativo .lblPagamento i {
    color: #fff;
}

.plano-box{
background:#ffffff;
border-radius:10px;
padding:20px;
margin-bottom:25px;
border:1px solid #eee;
}

.plano-resumo{
display:flex;
gap:30px;
flex-wrap:wrap;
font-size:14px;
}

.plano-resumo div{
background:#f8f9fa;
padding:10px 15px;
border-radius:6px;
}

.mensalidades-table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.mensalidades-table th{
text-align:left;
font-size:13px;
padding:12px;
background:#f5f6fa;
}

.mensalidades-table td{
padding:12px;
border-bottom:1px solid #eee;
font-size:14px;
}

.status-badge{
padding:4px 10px;
border-radius:20px;
font-size:12px;
font-weight:500;
}

.status-aguardando{
background:#fff3cd;
color:#856404;
}

.status-pago{
background:#d4edda;
color:#155724;
}

.status-cancelado{
background:#f8d7da;
color:#721c24;
}

.btn-pagar{
background:#05337e;
color:white;
padding:6px 12px;
border-radius:20px;
text-decoration:none;
font-size:12px;
}

.btn-pagar:hover{
background:#000;
}

.paginacao{
margin-top:20px;
display:flex;
gap:5px;
}

.paginacao a{
padding:6px 10px;
background:#f1f1f1;
border-radius:5px;
text-decoration:none;
font-size:13px;
}

.paginacao a.ativo{
background:#05337e;
color:white;
}

.copy-text {
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    margin: 0px auto;
    text-align: center;
    width: 60%;
}
.copy-text input.text {
    padding: 10px;
    font-size: 18px;
    color: #555;
    border: none;
    outline: none;
    width: 100%;
    margin-bottom: 0px;
}
.copy-text button {
  padding: 10px;
  background: #5784f5;
  color: #fff;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
}
.copy-text button:active {
  background: #809ce2;
}
.copy-text button:before {
  content: "Copiado";
  position: absolute;
  top: -45px;
  right: 0px;
  background: #5c81dc;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 15px;
  display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
  display: block;
}

.btn-voltar{
display:inline-block;
margin-bottom:15px;
background:#eee;
padding:6px 12px;
border-radius:5px;
text-decoration:none;
}

.rep-box{
background:#fafafa;
padding:18px;
border-radius:8px;
margin-top:20px;
border:1px solid #eee;
}

.rep-box-titulo{
font-size:16px;
margin-bottom:12px;
font-weight:600;
}

.rep-info-list{
list-style:none;
padding:0;
margin:0;
}

.rep-info-list li{
padding:8px 0;
border-bottom:1px solid #eee;
font-size:14px;
color:#333;
}

.rep-info-list li:last-child{
border-bottom:none;
}

.rep-info-list strong{
color:#000;
font-weight:600;
}