/* Melhorias de responsividade para telas grandes - Devotly
 * Este arquivo contém aprimoramentos específicos para telas maiores
 * garantindo uma experiência otimizada em monitores grandes e ultrawide
 */

/* Ajustes para o título principal em telas grandes */
@media (min-width: 1400px) {
  .hero__title {
    font-size: 3.75rem;
    margin-bottom: 2rem;
  }
  
  .word-container {
    min-width: 16ch;
  }
  
  .title-highlight .sparkle {
    width: 10px;
    height: 10px;
  }
  
  /* Melhorias visuais para o efeito de brilho */
  .word.active {
    background-size: 250% auto;
  }
}

@media (min-width: 1800px) {
  .hero__title {
    font-size: 4.25rem;
    margin-bottom: 2.5rem;
  }
  
  .word-container {
    min-width: 18ch;
  }
  
  .title-highlight .sparkle:nth-child(2),
  .title-highlight .sparkle:nth-child(3) {
    width: 12px;
    height: 12px;
  }
  
  .title-highlight .sparkle:nth-child(4),
  .title-highlight .sparkle:nth-child(5) {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 2200px) {
  .hero__title {
    font-size: 5rem;
  }
  
  .word-container {
    min-width: 20ch;
  }
}

/* Ajustes para o verso da Bíblia */
@media (min-width: 1400px) {
  .hero__verse {
    padding: 2rem 3rem;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
  }
  
  .hero__verse p {
    font-size: 1.3rem;
  }
  
  .hero__verse span {
    font-size: 1.05rem;
    margin-top: 0.5rem;
  }
}

@media (min-width: 1800px) {
  .hero__verse {
    padding: 2.5rem 4rem;
    max-width: 800px;
  }
  
  .hero__verse p {
    font-size: 1.5rem;
  }
  
  .hero__verse span {
    font-size: 1.15rem;
  }
}

/* Ajustes para descrição e botões */
@media (min-width: 1400px) {
  .hero__description {
    font-size: 1.2rem;
    max-width: 65ch;
  }
  
  .hero__actions {
    gap: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .btn-primary, .btn-secondary, .btn {
    padding: 1rem 1.75rem;
    min-width: 11rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1800px) {
  .hero__description {
    font-size: 1.35rem;
    max-width: 70ch;
    margin-bottom: 0.5rem;
  }
  
  .hero__actions {
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .btn-primary, .btn-secondary, .btn {
    padding: 1.125rem 2rem;
    min-width: 12rem;
    font-size: 1.2rem;
  }
}

/* Ajustes para estatísticas */
@media (min-width: 1400px) {
  .hero__stats {
    padding: 1rem 2rem;
    gap: 2.5rem;
    margin-top: 1rem;
  }
  
  .stat-item {
    min-width: 140px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .stat-divider {
    height: 35px;
  }
}

@media (min-width: 1800px) {
  .hero__stats {
    padding: 1.25rem 2.5rem;
    gap: 3rem;
  }
  
  .stat-item {
    min-width: 160px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-divider {
    height: 40px;
  }
}

/* Responsividade da seção "Como Funciona" */
@media (min-width: 1400px) {
  .how-section {
    padding-block: var(--space-8) calc(var(--space-8) + 1rem);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .steps-grid {
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .step-card {
    padding: var(--space-7) var(--space-6);
  }
  
  .step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .step-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .step-text {
    font-size: 1.05rem;
  }
}

@media (min-width: 1800px) {
  .steps-grid {
    max-width: 1400px;
  }
  
  .step-card {
    padding: calc(var(--space-7) + 0.5rem) var(--space-7);
  }
  
  .step-icon {
    font-size: 2.25rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-text {
    font-size: 1.1rem;
  }
}

/* Responsividade da seção de preços */
@media (min-width: 1400px) {
  .pricing-section {
    padding-block: calc(var(--space-8) + 1rem);
  }
  
  .pricing-grid {
    gap: var(--space-7);
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .pricing-card {
    padding: var(--space-7);
  }
  
  .plan-name {
    font-size: 1.5rem;
  }
  
  .currency {
    font-size: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .period {
    font-size: 1rem;
  }
  
  .plan-features {
    gap: 0.8rem;
    margin-block: var(--space-5);
  }
  
  .plan-features li {
    font-size: 1.05rem;
  }
}

@media (min-width: 1800px) {
  .pricing-grid {
    max-width: 1200px;
  }
  
  .pricing-card {
    padding: calc(var(--space-7) + 0.5rem);
  }
  
  .plan-name {
    font-size: 1.75rem;
  }
  
  .currency {
    font-size: 1.75rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .period {
    font-size: 1.1rem;
  }
  
  .plan-features {
    margin-block: var(--space-6);
  }
  
  .plan-features li {
    font-size: 1.15rem;
  }
}

/* Rodapé aprimorado para telas grandes */
@media (min-width: 1400px) {
  .footer {
    padding-block: var(--space-8) var(--space-6);
  }
  
  .footer__logo {
    font-size: 1.5rem;
  }
  
  .footer__slogan {
    font-size: 1.1rem;
  }
  
  .footer__link {
    font-size: 1.05rem;
  }
  
  .social-links a {
    font-size: 1.5rem;
  }
}

@media (min-width: 1800px) {
  .footer__logo {
    font-size: 1.75rem;
  }
  
  .footer__slogan {
    font-size: 1.2rem;
  }
  
  .footer__link {
    font-size: 1.1rem;
  }
  
  .social-links a {
    font-size: 1.7rem;
  }
}

/* Ajustes específicos para o container em telas ultrawide */
@media (min-width: 2400px) {
  .container {
    max-width: 1800px;
  }
  
  .hero__content {
    max-width: 1400px;
  }
  
  .steps-grid {
    max-width: 1600px;
  }
  
  .pricing-grid {
    max-width: 1400px;
  }
}