/* ============================================
   Home Page Styles
   ============================================ */


/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 8rem;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .hero-content {
    display: block;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero .hero-text {
    text-align: center;
}

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

.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26, 31, 58, 0.92) 0%,
        rgba(26, 31, 58, 0.82) 40%,
        rgba(155, 63, 163, 0.78) 100%
    );
}

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


.hero-text h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botão outline branco para o hero escuro */
.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Botão outline branco para o hero escuro */
.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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


/* Trust Bar */
.trust-bar {
    background-color: var(--gray-100);
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-title {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 500;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.trust-logo span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
}

.solution-card {
    text-align: center;
    padding: 2.5rem;
}

.solution-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background-color: var(--secondary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--gray-100);
}

.comparison-table i {
    margin-right: 0.5rem;
}

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

/* Differentials Section */
.differentials {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.differential-item {
    text-align: center;
    padding: 2rem;
}

.differential-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.differential-item h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.differential-item p {
    color: var(--gray-600);
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FFC107;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial-company {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.testimonial-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: -0.5rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-200);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}



/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(155, 63, 163, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

/* Featured Product */
.featured-product {
    padding: 5rem 0;
    background: var(--white);
}

.featured-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.highlight-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.highlight-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.featured-cta {
    text-align: center;
}

.featured-cta .btn {
    margin: 0 0.5rem;
}

.cta-note {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.cta-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Solution Coverage Note */
.solution-coverage-note {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-style: italic;
}

.solution-coverage-note.solution-national {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

/* Plans Footer */
.plans-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* Coverage Section (bloco na home) */
.coverage-section {
    padding: 4rem 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coverage-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.coverage-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.coverage-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.coverage-stat i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.coverage-stat span {
    font-weight: 500;
    color: var(--secondary-color);
}

.coverage-fallback {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.coverage-fallback a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
     .hero {
        padding: 4rem 0 5rem;
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .plan-card.popular {
        transform: scale(1);
    }

    .featured-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .featured-highlights {
        grid-template-columns: 1fr;
    }

    .featured-cta .btn {
        display: block;
        margin: 0 0 0.5rem 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
