/* Color Variables */
:root {
    --primary-color: #ffad00;
    --primary-hover: #9c27b0;
    --text-dark: #1a1f36;
    --text-light: #4a5568;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-toggle .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Offcanvas Menu */
.offcanvas {
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1050;
    width: 280px;
}

.offcanvas.show {
    visibility: visible;
    transform: translateX(0);
}

.offcanvas-start {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-body {
    padding: 1rem;
    overflow-y: auto;
    height: calc(100vh - 60px);
}

.offcanvas .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.offcanvas .nav-item {
    margin: 0.5rem 0;
    width: 100%;
}

.offcanvas .dropdown-menu {
    position: static;
    border: none;
    background: transparent;
    padding-left: 1rem;
    display: none;
    width: 100%;
}

.offcanvas .dropdown-toggle.active + .dropdown-menu {
    display: block;
}

.offcanvas .dropdown-item {
    padding: 0.5rem 1rem;
    width: 100%;
}

.offcanvas .login-btns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.offcanvas .login-btns .btn {
    width: 100%;
    text-align: center;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: block;
    }

    .navbar .nav-links {
        display: none;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .nav-item {
        margin: 0.5rem 0;
    }
}

/* Desktop Menu Styles */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }

    .offcanvas {
        display: none;
    }

    .navbar .nav-links {
        display: flex;
    }
}

/* Overlay for offcanvas */
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.offcanvas-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1f36;
}

.hero-text .highlight {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.hero-text .highlight:hover {
    color: var(--primary-hover);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1f36;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-image {
    margin-bottom: 24px;
}

.feature-image img {
    width: 100%;
    height: auto;
}

.feature-card h3 {
    font-size: 24px;
    color: #1a1f36;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #4a5568;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.feature-list li:hover::before {
    color: var(--primary-hover);
}

.link-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 24px;
    color: #1a1f36;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #4a5568;
    margin-bottom: 24px;
}

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

.benefit-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #4a5568;
}

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.benefit-list li:hover::before {
    color: var(--primary-hover);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.advantage-card h3 {
    font-size: 20px;
    color: #1a1f36;
    margin-bottom: 8px;
}

.advantage-card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.5;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px var(--shadow);
    border-color: var(--primary-hover);
}

.advantage-card:hover .advantage-icon {
    color: var(--primary-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .feature-card,
    .benefit-card,
    .advantage-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Add transition effects to elements */
.feature-card,
.benefit-card,
.advantage-card,
.btn,
.link-more,
.feature-list li::before,
.benefit-list li::before {
    transition: all 0.3s ease;
}

/* Update existing color references */
.hero-text .highlight {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.hero-text .highlight:hover {
    color: var(--primary-hover);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.feature-list li:hover::before {
    color: var(--primary-hover);
}

.link-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.benefit-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.benefit-list li:hover::before {
    color: var(--primary-hover);
}


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

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

/* Add hover effects to cards */
.feature-card:hover,
.benefit-card:hover,
.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px var(--shadow);
    border-color: var(--primary-hover);
}

.advantage-icon {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: var(--primary-hover);
}
/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background-color: #fff;
}

.payment-methods h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.method-card {
    padding: 32px;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.method-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.method-card ul {
    list-style: none;
    padding: 0;
}

.method-card li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.steps h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.steps > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    padding: 32px;
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    font-size: 36px;
    color: #ffad00;
    margin-bottom: 16px;
    font-weight: bold;
}

.step-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

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

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background-color: #fff;
}

.use-cases h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-card {
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.case-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.case-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.case-card ul {
    list-style: none;
    padding: 0;
}

.case-card li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 24px;
    position: relative;
}

.case-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffad00;
}

/* API Integration Section */
.api-integration {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.api-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.api-text {
    flex: 1;
}

.api-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.api-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.api-code {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
}

.api-code pre {
    margin: 0;
}

.api-code code {
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .api-content {
        flex-direction: column;
    }

    .methods-grid,
    .steps-grid,
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .methods-grid,
    .steps-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .api-code {
        overflow-x: auto;
    }
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}


.icon{
    color:#ffad00;
}


.pricing-card {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.pricing-section h5 {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-section .d-flex {
    font-size: 0.95rem;
}

.features-section ul li {
    color: #666;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 12px 30px;
    border-radius: 30px;
}

.text-primary {
    color: #7b2cbf !important;
}

.pricing-card {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card .badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pricing-card .badge.bg-info {
    background-color: #ffaf0826 !important;
    color: #ffad00 !important;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    width: 135px;
}

.pricing-card .card-title {
    color: #ffad00;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card .text-muted {
    color: #98a2b3 !important;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-section h5.text-uppercase {
    color: #98a2b3;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-section .d-flex {
    background-color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    justify-content: space-between;
    align-items: center;
}

.pricing-section .payment-group,
.pricing-section .receipt-group {
    border: 1px solid #ffad00;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.pricing-section .ps-3 {
    padding-left: 1.5rem !important;
}

.pricing-section .ps-3 .d-flex {
    background-color: transparent;
    padding: 8px 0;
    color: #6c757d;
}

.pricing-card .features-section h6 {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card .list-unstyled li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card .list-unstyled li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7b2cbf;
}

.text-primary {
    color: #7b2cbf !important;
}

/* Consulte text styling */
.text-primary.consulte {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Small text and bullet points */
.text-muted small {
    color: #ffad00 !important;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.text-muted small::before {
    content: "•";
    color: #ffad00;
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card .card-body {
        padding: 1.5rem;
    }
}

/* Updated Pricing Section Grid Layout */
.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    justify-content: center;
}

.pricing-section .col-md-6 {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    padding: 15px;
    margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pricing-section .col-md-6 {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
}

/* Make cards same height */
.pricing-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-section .card-body {
    display: flex;
    flex-direction: column;
}

.pricing-section .text-center {
    margin-top: auto;
}

/* Solutions List */
.features-section h6 {
    color: #344054;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.features-section .list-unstyled li {
    color: #475467;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.features-section .list-unstyled li::before {
    content: "•";
    color: #ffad00;
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Price Values */
.pricing-section .d-flex span:last-child {
    font-weight: 500;
    color: #344054;
}

/* Card Background and Border */
.pricing-card {
    background-color: #f8f9fa;
    border: none;
    border-radius: 16px;
}

/* Estilos para a seção de títulos de preços */
.pricing-section .col-lg-8 {
    margin-top: 3rem;
    margin-bottom: 4.5rem;
}

.pricing-section h1 {
    font-size: 2rem;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 600;
}

@media (min-width: 992px) {
    .pricing-section h1 {
        font-size: 3rem;
    }
}

.pricing-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .pricing-section h2 {
        font-size: 1.25rem;
    }
}

.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card .card-body {
    padding: 1.5rem;
}

.pricing-card .badge {
    font-size: 0.9rem;
    padding: 6px 12px;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    background-color: #ffeeba;
    color: #856404;
}

.pricing-card .card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #7b2cbf;
}

.pricing-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #6c757d;
}

.pricing-section h5.text-uppercase {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    letter-spacing: 1px;
    margin: 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.payment-group, .receipt-group {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.pricing-section .mb-4 {
    margin-bottom: 0.5rem !important;
}

.d-flex {
    padding: 6px 0;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-flex:last-child {
    border-bottom: none;
}

.d-flex span {
    font-size: 0.9rem;
    color: #495057;
}

.d-flex .text-end {
    font-weight: 600;
    color: #2c3e50;
}

.text-primary {
    color: #7b2cbf !important;
    font-weight: 600;
}

.features-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.features-section h6 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.features-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.features-section ul li {
    color: #495057;
    font-size: 0.9rem;
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.features-section ul li:before {
    content: "•";
    color: #7b2cbf;
    font-weight: bold;
    margin-right: 8px;
}

.ps-3 {
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem !important;
    margin-top: 0.5rem;
}

.text-muted small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-card .card-body {
        padding: 1.25rem;
    }
    
    .payment-group, .receipt-group {
        padding: 0.75rem;
    }
} 