/* ====================================
   FINAL CTA SECTION
   ==================================== */

.final-cta-section {
    background: linear-gradient(135deg, #0a0a2e 0%, #1a0a3e 50%, #2a0a4e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    opacity: 0.6;
}

.final-cta-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.final-cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.final-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.4rem;
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-wrapper {
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.comparison-column {
    background: rgba(20, 20, 30, 0.6);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.comparison-column.bad {
    border: 2px solid rgba(255, 77, 77, 0.3);
}

.comparison-column.good {
    border: 2px solid rgba(0, 230, 118, 0.4);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
}

.comparison-column:hover {
    transform: translateY(-4px);
}

.comparison-column.bad:hover {
    border-color: rgba(255, 77, 77, 0.6);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

.comparison-column.good:hover {
    border-color: rgba(0, 230, 118, 0.6);
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.3);
}

.comparison-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.comparison-column-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.comparison-column.bad .comparison-column-title {
    color: #ff4d4d;
}

.comparison-column.good .comparison-column-title {
    color: #00e676;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.comparison-list li {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.comparison-column.bad .comparison-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.comparison-column.good .comparison-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.comparison-result {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-column.bad .comparison-result {
    background: rgba(255, 77, 77, 0.15);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.comparison-column.good .comparison-result {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

/* Call-out Box */
.final-callout {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(41, 98, 255, 0.15));
    border: 2px solid #00ffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.final-callout p {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.final-callout strong {
    color: #00ffff;
    font-weight: 700;
}

/* CTA Buttons */
.final-cta-buttons {
    text-align: center;
}

.final-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    padding: 25px 50px;
    border-radius: 50px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #00d4ff, #0066cc);
}

.final-cta-button-text {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.final-cta-button-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
}

.secondary-link {
    display: block;
    font-size: 0.95rem;
    color: #00ffff;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.secondary-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ====================================
   FOOTER SECTION
   ==================================== */

.footer-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Company Info */
.footer-company {
    text-align: center;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cnpj {
    font-size: 0.9rem;
    color: #94A3B8;
    margin-bottom: 20px;
}

/* Contact Info */
.footer-contact {
    text-align: center;
}

.footer-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact-list a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Links */
.footer-links {
    text-align: center;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links-list li {
    font-size: 0.9rem;
}

.footer-links-list a {
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #00ffff;
}

/* Social Media */
.footer-social {
    text-align: center;
}

.footer-social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-list .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-social-list .social-icon:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #94A3B8;
    margin: 0;
}

/* ====================================
   RESPONSIVE - TABLET & DESKTOP
   ==================================== */

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-company,
    .footer-contact,
    .footer-links,
    .footer-social {
        text-align: left;
    }

    .footer-logo {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-links-list,
    .footer-social-list {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
    }

    .final-cta-button {
        font-size: 1.1rem;
        padding: 20px 35px;
    }

    .final-cta-button-text {
        font-size: 1.1rem;
    }

    .comparison-column {
        padding: 25px 20px;
    }

    .comparison-list li {
        font-size: 0.95rem;
    }
}