/* Importar fontes modernas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap' );
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;700&display=swap' );

/* RESET & CONFIGURAÇÕES GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f7fafc;
    color: #2d3748;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.06);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

nav .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
}

.logo .blue-2 {
    color: #3182ce;
}

/* HERO SECTION ATUALIZADA */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 4rem 2rem;
    background-color: #3575d3; /* Cor de fundo extraída do GIF */
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

/* Coluna do texto */
.hero-content {
    flex: 1;
    max-width: 550px;
    color: white;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem; /* 56px */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-content .highlight {
    background: linear-gradient(45deg, #f0f9ff, #e0f2fe, #bae6fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem; /* 20px */
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .cta-button {
    background-color: black;
    color: white; /* Garante que o texto do botão seja azul */
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: #white;
}

/* Coluna da imagem */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px; /* Opcional: para suavizar as bordas do GIF */
}

/* BENEFITS SECTION */
.benefits {
    background: #fff;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #white;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f7fafc;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(49, 130, 206, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #3182ce;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #2d3748;
}

/* PRICING SECTION */
section.pricing {
    background-color: #1a1a2e;
    padding: 80px 0;
    position: relative;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    background: #232326;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 2.5rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(99, 179, 237, 0.22);
}

.pricing-card-gold:hover { border-color: #f6ad55; }
.pricing-card-diamond:hover { border-color: #9f7aea; }
.pricing-card-titanium:hover { border-color: #4a60c2; }
.pricing-card-googledrive:hover { border-color: #e53e3e; }
.pricing-card-adamantium:hover { border-color: #ffffff; }

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding-left: 0;
}

.plan-features li {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features i {
    color: #22d3ee;
    font-size: 1.1rem;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    background: #111;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(90deg, #3182ce 0%, #9f7aea 100%);
}

/* TESTIMONIALS SECTION */
.testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    padding: 80px 0;
}

.testimonials .container {
    max-width: 900px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(49, 130, 206, 0.10);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(49, 130, 206, 0.16);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 2.5rem;
}

.testimonial-text::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    color: #3182ce;
    opacity: 0.2;
}

.testimonial-author {
    font-weight: 700;
    color: #3182ce;
    font-size: 1rem;
}

/* FOOTER */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

#particles-canvas {
    width: 100%;
    height: 100%;
}

.footer-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .brand-logo h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #3182ce, #63b3ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid rgba(49, 130, 206, 0.3);
    border-radius: 50%;
    color: #63b3ed;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(49, 130, 206, 0.2);
    color: #fff;
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.25);
}

.footer-section .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .section-title i {
    color: #3182ce;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e0;
}

.contact-item i {
    color: #3182ce;
    font-size: 1.1rem;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #63b3ed;
}

.newsletter-section {
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid rgba(49, 130, 206, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: #cbd5e0;
    font-size: 1rem;
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(49, 130, 206, 0.3);
    overflow: hidden;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1rem;
}

.input-group button {
    padding: 15px 25px;
    background: linear-gradient(45deg, #3182ce, #63b3ed);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-divider {
    margin: 50px 0 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.5), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.copyright {
    font-size: 0.95rem;
    color: #a0aec0;
}

.copyright .brand-name {
    color: #63b3ed;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-link:hover {
    color: #fff;
}

.separator {
    color: #4a5568;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3182ce, #63b3ed);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column; /* Muda a direção para vertical */
        text-align: center;
    }

    .hero-image {
        order: -1; /* Move a imagem para cima */
        margin-bottom: 2rem;
        width: 80%;
        max-width: 350px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Ajusta o tamanho da fonte */
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .pricing-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand, .footer-section {
        align-items: center;
        text-align: center;
    }

    .social-links, .footer-section .section-title, .contact-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}
