/* Reset e Base */
:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --background-dark: #121212;
    --surface-dark: #1e1e1e;
    --text-light: #ffffff;
    --text-secondary: #a0a0a0;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: #5154c7;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: var(--surface-dark);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo */
.logo img {
    width: 200px;
    height: 75px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    padding: 80px 0;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #6b46c1 0%, #805ad5 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.6);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

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

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

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Seções Genéricas */
section {
    padding: 80px 0;
    background-color: var(--surface-dark);
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Recursos */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background-color: var(--background-dark);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Cards com efeitos modernos */
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        225deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: transform 0.5s ease;
    transform: translateY(100%);
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card:hover::before {
    transform: translateY(0);
}

.card * {
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #6b46c1, #3182ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Como Funciona */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #6366f1;
    color: white;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.step h3 {
    margin: 1rem 0;
    color: #fff;
    font-size: 1.25rem;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .step {
        max-width: 100%;
        margin: 0;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        text-align: left;
        background: rgba(255, 255, 255, 0.03);
        gap: 1.5rem;
    }

    .step-number {
        margin: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        flex-shrink: 0;
        font-size: 1.25rem;
    }

    .step-content {
        flex: 1;
    }

    .step h3 {
        margin: 0 0 0.5rem 0;
        font-size: 1.1rem;
    }

    .step p {
        margin: 0;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .steps {
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .step {
        padding: 1rem;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.1rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.85rem;
    }
}

/* Screenshots Section */
#screenshots {
    padding: 80px 0;
    background: var(--dark-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    pointer-events: none;
}

#screenshots h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

#screenshots h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.screenshots-slider {
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    margin-top: calc(0px - (50px / 2)) !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #6b46c1 !important;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Pagination */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(107, 70, 193, 0.2) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #6b46c1 !important;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .screenshots-slider {
        height: 300px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination {
        bottom: 0 !important;
    }
}

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.screenshots-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.screenshots-grid img:hover {
    transform: scale(1.05);
}

/* Screenshots Carousel */
.app-screenshots {
    width: 100%;
    padding: 40px 0 80px;
    position: relative;
    overflow: visible;
}

.app-screenshots .swiper-slide {
    width: 280px;
    height: 560px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.4;
    transform: scale(0.9);
    background: #1a1a1a;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-screenshots .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.app-screenshots .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    pointer-events: none;
}

.app-screenshots img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.screenshot-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.swiper-slide-active .screenshot-caption {
    opacity: 1;
    transform: translateY(0);
}

.app-screenshots .swiper-button-next,
.app-screenshots .swiper-button-prev {
    color: #6366f1;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.app-screenshots .swiper-button-next:hover,
.app-screenshots .swiper-button-prev:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
}

.app-screenshots .swiper-button-next:after,
.app-screenshots .swiper-button-prev:after {
    font-size: 1.2rem;
}

.app-screenshots .swiper-pagination {
    bottom: 20px;
}

.app-screenshots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.app-screenshots .swiper-pagination-bullet-active {
    background: #6366f1;
    transform: scale(1.3);
}

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

    .app-screenshots .swiper-slide {
        width: 240px;
        height: 480px;
    }

    .app-screenshots .swiper-button-next,
    .app-screenshots .swiper-button-prev {
        display: none;
    }

    .screenshot-caption {
        bottom: -30px;
    }
}

@media (max-width: 480px) {
    .app-screenshots .swiper-slide {
        width: 200px;
        height: 400px;
        padding: 10px;
    }

    .screenshot-caption {
        font-size: 0.9rem;
        bottom: -25px;
    }

    .app-screenshots .swiper-pagination {
        bottom: 10px;
    }
}

/* Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: var(--background-dark);
    border-radius: 10px;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

.pricing-card.featured {
    border: 2px solid #6b46c1;
    background: linear-gradient(145deg, rgba(107, 70, 193, 0.1), rgba(49, 130, 206, 0.1));
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(45deg, #6b46c1, #3182ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #6b46c1;
    padding: 2px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1) rotate(5deg);
}

/* Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Planos */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Download */
.app-download {
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-btn img {
    height: 60px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: var(--background-dark);
    border: 1px solid var(--surface-dark);
    color: var(--text-light);
    border-radius: 8px;
}

.contact-form textarea {
    height: 150px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 200px;
    height: 75px;
    display: block;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

.footer-social {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto;
    }

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

    .social-links {
        justify-content: center;
    }

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

/* Responsividade */
@media (max-width: 768px) {
    .header .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    /* Footer - Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-links,
    .footer-social,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 2rem;
    }

    .footer-links,
    .footer-social {
        gap: 1rem;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 1.5rem 1rem;
    }
}

/* Pricing Section */
#planos {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    pointer-events: none;
}

#planos h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price .period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: normal;
}

.price .enterprise {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), #8385f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    margin-bottom: 30px;
}

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

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.pricing-action {
    text-align: center;
}

.pricing-action .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

@media (max-width: 768px) {
    #planos {
        padding: 60px 0;
    }

    #planos h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .pricing-card {
        padding: 30px;
    }

    .price {
        font-size: 2rem;
    }
}
