/* Guia Financeiro GPT - Estilos Específicos */
/* Sistema Prático - Página de Vendas */

:root {
    --primary-orange: #E87E10;
    --secondary-gold: #EDAC40;
    --primary-teal: #104862;
    --accent-green: #4EA72E;
    --dark-gray: #313131;
    --ai-purple: #6B46C1;
    --ai-blue: #3B82F6;
    
    /* Breakpoints */
    --mobile: 576px;
    --tablet: 768px;
    --desktop: 992px;
    --large: 1200px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--ai-purple);
}

/* Hero Section - Específico do GPT */
.hero {
    background: linear-gradient(135deg, var(--ai-purple) 0%, var(--ai-blue) 50%, var(--primary-teal) 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M10 10h5v5h-5zM25 10h5v5h-5zM10 25h5v5h-5zM25 25h5v5h-5z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><path d="M12.5 10v-2.5M12.5 15v2.5M27.5 10v-2.5M27.5 15v2.5" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature .icon {
    font-size: 1.4rem;
    min-width: 1.4rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.6s both;
    margin-top: 2rem;
}

.mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-gold));
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 126, 16, 0.3);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.cta-button.large {
    padding: 1.75rem 3rem;
    font-size: 1.2rem;
    width: 100%;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background: rgba(107, 70, 193, 0.05);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-teal);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--ai-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-item .problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-item p {
    color: var(--primary-teal);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Solution Section */
.solution-callout {
    background: linear-gradient(135deg, var(--ai-purple), var(--ai-blue));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
}

.solution-callout h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.benefit-card:nth-child(even) {
    border-top-color: var(--ai-purple);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    line-height: 1.4;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(107, 70, 193, 0.2);
    border-color: var(--ai-purple);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    line-height: 1.4;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: rgba(107, 70, 193, 0.03);
}

.pricing-card-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--ai-purple);
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--ai-purple), var(--ai-blue));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-title,
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.card-subtitle {
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.price-container {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--ai-purple);
    font-weight: 600;
    text-transform: uppercase;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.price-note {
    font-size: 0.85rem;
    color: var(--primary-teal);
}

.included-items {
    text-align: left;
    margin: 2rem 0;
}

.included-items h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    text-align: center;
}

.included-items ul {
    list-style: none;
    padding: 0;
}

.included-items ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.included-items ul li::before {
    content: attr(data-icon);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    text-align: center;
}

.guarantee-highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-teal));
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guarantee-badge .icon {
    font-size: 1.2rem;
}

.guarantee-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.guarantee-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    margin: 0;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.guarantee-feature .icon {
    font-size: 1.1rem;
    min-width: 1.1rem;
}

.guarantee-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Cross-sell Section */
.cross-sell-section {
    padding: 60px 0;
    margin-top: 60px;
    background: rgba(59, 130, 246, 0.03);
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.cross-sell-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cross-sell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--ai-purple);
}

.cross-sell-header {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cross-sell-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
    object-fit: contain;
}

.cross-sell-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.cross-sell-card p {
    color: var(--primary-teal);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cross-sell-footer {
    padding: 1.5rem;
    background: rgba(107, 70, 193, 0.05);
    text-align: center;
    margin-top: auto;
}

.cross-sell-link {
    color: var(--ai-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cross-sell-link:hover {
    color: var(--ai-blue);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    margin-top: 60px;
    background: rgba(107, 70, 193, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(107, 70, 193, 0.08);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--ai-purple);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--primary-teal);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--primary-teal);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-info {
    text-align: center;
}

.footer-links {
    margin-top: 0.5rem;
}

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

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

.footer-links span {
    margin: 0 0.5rem;
    color: var(--primary-teal);
}

/* Offer Section Styles */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.consultant-comparison {
    margin: 2rem 0 3rem;
}

.consultant-real {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ef4444;
}

.consultant-real h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-breakdown p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: var(--primary-teal);
    font-size: 1.05rem;
}

.price-breakdown p:last-child {
    border-bottom: none;
}

.price-tag {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.total-real {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 8px;
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin: 0;
}

.total-real strong {
    color: #dc2626;
    font-size: 1.4rem;
}

.offer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-text.final-offer {
    font-size: 1.3rem;
    margin: 2rem 0;
}

.offer-text.highlight-text {
    font-size: 1.6rem;
    color: var(--primary-orange);
    font-weight: 700;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4cc 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-orange);
    display: inline-block;
    margin-top: 1rem;
}

.bigmac-price-box {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 3px solid #16a34a;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
    animation: bigmacPulse 3s ease-in-out infinite;
}

@keyframes bigmacPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(22, 163, 74, 0.5);
    }
}

.bigmac-icon {
    font-size: 5rem;
    flex-shrink: 0;
    animation: bigmacBounce 2s ease-in-out infinite;
}

@keyframes bigmacBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bigmac-text {
    flex: 1;
    text-align: center;
}

.bigmac-title {
    font-size: 1.3rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.bigmac-price {
    font-size: 2.5rem;
    color: #16a34a;
    font-weight: 700;
    margin: 0;
}

.price-highlight {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.3rem;
}

.offer-stack {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.offer-stack h3 {
    text-align: center;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stack-item:last-of-type {
    border-bottom: none;
}

.stack-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.stack-item.highlight-stack {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-left: 3px solid var(--primary-orange);
    border-radius: 8px;
}

.stack-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stack-content {
    flex: 1;
}

.stack-content h4 {
    color: var(--primary-teal);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.stack-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.stack-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.stack-total {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-orange);
    text-align: right;
}

.total-label {
    font-size: 1.1rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.total-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
}

/* Solution Section Styles */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.solution-section .section-title {
    color: white;
}

.solution-content {
    max-width: 1100px;
    margin: 0 auto;
}

.solution-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 136, 0, 0.4);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 136, 0, 0.6);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.step-connector {
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-gold));
    z-index: 0;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.solution-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item .check {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Problem Section Enhanced */
.problem-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-intro .problem-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #64748b;
}

.problem-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.question-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.question-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.question-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.question {
    font-size: 1.1rem;
    color: var(--primary-teal);
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.problem-insight {
    margin-top: 4rem;
}

.insight-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
}

.insight-box .problem-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.insight-box .problem-text:last-child {
    margin-bottom: 0;
}

.insight-box .highlight-text {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
}

.consultant-price {
    text-align: center;
    padding: 2rem;
}

.consultant-price .problem-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.consultant-price .final-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4cc 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.3);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(255, 136, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(255, 136, 0, 0.5);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Price Support Text */
.price-support-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #16a34a;
    font-weight: 600;
}

/* Guarantee Section Enhanced */
.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-text.highlight-text {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: #065f46;
}

.guarantee-text.final-text {
    font-weight: 600;
    color: #10b981;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(107, 70, 193, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--ai-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ai-blue);
}

/* Responsive Design */
@media (min-width: 576px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cross-sell-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantee-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .logo {
        height: 60px;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-image {
        margin-top: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cross-sell-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 2.45rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .problem-section,
    .benefits-section,
    .features-section,
    .pricing-section,
    .cross-sell-section,
    .faq-section {
        padding: 100px 0;
    }
    
    .guarantee-section {
        padding: 100px 0 0;
    }
}

/* Responsividade para garantia */
@media (max-width: 768px) {
    .guarantee-highlight {
        padding: 2rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .guarantee-highlight h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-highlight p {
        font-size: 1rem;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-feature {
        padding: 0.75rem 1rem;
    }
    
    /* Responsive Styles for New Sections */
    .offer-section {
        padding: 60px 0;
    }
    
    .problem-section {
        padding: 40px 0;
    }
    
    .offer-stack {
        padding: 1.5rem;
    }
    
    .stack-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stack-content h4 {
        font-size: 1rem;
    }
    
    .stack-content p {
        font-size: 0.9rem;
    }
    
    .stack-value {
        font-size: 1.1rem;
    }
    
    .offer-text {
        font-size: 1rem;
    }
    
    .offer-text.final-offer {
        font-size: 1.1rem;
    }
    
    .offer-text.highlight-text {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
    
    .consultant-real {
        padding: 1.5rem;
    }
    
    .consultant-real h3 {
        font-size: 1.2rem;
    }
    
    .price-breakdown p {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .total-real {
        font-size: 1.05rem;
    }
    
    .total-real strong {
        font-size: 1.2rem;
    }
    
    .bigmac-price-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .bigmac-icon {
        font-size: 4rem;
    }
    
    .bigmac-title {
        font-size: 1.1rem;
    }
    
    .bigmac-price {
        font-size: 2rem;
    }
    
    .solution-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        display: none !important;
    }
    
    .step-item {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
    }
    
    .step-number {
        font-size: 1.75rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .solution-text {
        font-size: 1rem;
    }
    
    .problem-questions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .question-item {
        padding: 1.5rem;
    }
    
    .question-icon {
        font-size: 1.5rem;
    }
    
    .question {
        font-size: 1rem;
    }
    
    .problem-intro .problem-text {
        font-size: 1.05rem;
    }
    
    .insight-box {
        padding: 1.5rem;
    }
    
    .insight-box .problem-text {
        font-size: 1rem;
    }
    
    .consultant-price .problem-text {
        font-size: 1rem;
    }
    
    .consultant-price .final-text {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .benefit-card h3 {
        font-size: 1.15rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .problem-questions {
        padding: 1.5rem;
    }
    
    .question {
        font-size: 1.1rem;
    }
    
    .guarantee-content {
        padding: 2rem 1.5rem;
    }
    
    .guarantee-text {
        font-size: 1rem;
    }
    
    .guarantee-text.highlight-text {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offers-grid {
        gap: 2rem;
    }
    
    .offer-card.featured {
        transform: scale(1.02);
    }
    
    .offer-card.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
    
    .offer-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .best-offer-badge {
        top: -12px;
        right: 15px;
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
    
    .offer-card h3 {
        font-size: 1.5rem;
    }
    
    .offer-pricing .amount {
        font-size: 2.5rem;
    }
    
    .offer-pricing .amount small {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-card h3 {
        font-size: 1.3rem;
    }
    
    .offer-pricing .amount {
        font-size: 2rem;
    }
    
    .offer-guarantees {
        flex-direction: column;
        align-items: flex-start;
    }
}/* =====================================================
   IMPROVED PRICING SECTION - OPTIMIZED FOR MOBILE
   ===================================================== */

.pricing-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.pricing-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.pricing-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.offer-card.featured {
    border: 3px solid var(--primary-orange);
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(232, 126, 16, 0.15);
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 70px rgba(232, 126, 16, 0.2);
}

.best-offer-badge {
    position: absolute;
    top: -18px;
    right: 25px;
    background: linear-gradient(135deg, #ff8c00, var(--primary-orange));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(232, 126, 16, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-card h3,
.offer-card .offer-title {
    font-size: 1.65rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.offer-card .subtitle,
.offer-card .offer-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
}

.offer-items {
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateX(5px);
}

.offer-item .material-icons {
    color: #10b981;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-item span:not(.material-icons) {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.highlight-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    padding: 0.65rem;
    border-left: 3px solid #10b981;
    margin: 0.15rem 0;
}

.highlight-item .material-icons {
    color: #059669;
}

.highlight-item span:not(.material-icons) {
    font-weight: 600;
    color: #065f46;
}

.offer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d1d5db 50%, transparent 100%);
    margin: 1rem 0;
}

.offer-pricing {
    text-align: center;
    margin: 1.5rem 0 1rem;
    padding: 1.25rem 0;
    border-top: 2px solid #f3f4f6;
    border-bottom: 2px solid #f3f4f6;
}

.old-price {
    color: #999;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.old-price span {
    text-decoration: line-through;
}

.current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
}

.current-price .label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.current-price .price-value,
.current-price:not(.featured) {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
}

.current-price .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4b5563;
    text-align: center;
}

.current-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
}

.current-price.featured .amount {
    font-size: 3.5rem;
    text-align: center;
}

.price-economy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.75rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-align: center;
}

.offer-card .cta-button {
    width: 100%;
    padding: 1.1rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.offer-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-card .cta-button.primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff9500);
    color: white;
}

.offer-card .cta-button.secondary {
    background: linear-gradient(135deg, #4b5563, #374151);
    color: white;
}

.offer-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    background: #f9fafb;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.guarantee-item .material-icons {
    font-size: 1.4rem;
    color: var(--primary-orange);
}

/* Responsive Design - Optimized for Mobile */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-section .section-title {
        font-size: 2.2rem;
    }

    .offers-grid {
        gap: 2rem;
        max-width: 100%;
    }
    
    .offer-card.featured {
        transform: scale(1.02);
    }
    
    .offer-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }

    .offer-card h3,
    .offer-card .offer-title {
        font-size: 1.65rem;
    }

    .current-price .amount {
        font-size: 3rem;
    }

    .current-price.featured .amount {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-section .section-title {
        font-size: 1.9rem;
        padding: 0 1rem;
    }

    .pricing-section .section-subtitle {
        font-size: 1.05rem;
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .offer-card {
        padding: 2rem;
    }

    .offer-card.featured {
        transform: scale(1);
        order: -1; /* Move featured card to top on mobile */
    }
    
    .offer-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .best-offer-badge {
        top: -14px;
        right: 20px;
        font-size: 0.7rem;
        padding: 0.5rem 1.3rem;
    }
    
    .offer-card h3,
    .offer-card .offer-title {
        font-size: 1.5rem;
    }

    .offer-card .subtitle,
    .offer-card .offer-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .offer-item {
        gap: 0.7rem;
    }

    .offer-item .material-icons {
        font-size: 1.3rem;
    }

    .offer-item span:not(.material-icons) {
        font-size: 0.9rem;
    }

    .highlight-item {
        padding: 0.75rem;
    }

    .current-price .amount {
        font-size: 2.8rem;
    }

    .current-price.featured .amount {
        font-size: 3.2rem;
    }

    .offer-card .cta-button {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .offer-guarantees {
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .guarantee-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .guarantee-item .material-icons {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-section .section-title {
        font-size: 1.6rem;
    }

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

    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-card h3,
    .offer-card .offer-title {
        font-size: 1.3rem;
    }

    .offer-card .subtitle,
    .offer-card .offer-subtitle {
        font-size: 0.9rem;
    }

    .best-offer-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .current-price .currency {
        font-size: 1.2rem;
    }

    .current-price .amount {
        font-size: 2.5rem;
    }

    .current-price.featured .amount {
        font-size: 2.8rem;
    }

    .price-economy {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .offer-guarantees {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .guarantee-item {
        justify-content: center;
    }
}

/* Animation for cards on scroll */
@media (prefers-reduced-motion: no-preference) {
    .offer-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .offer-card.featured {
        animation: fadeInUp 0.6s ease-out 0.2s backwards;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
