
/* Base Styles */
:root {
 /* --background: #f8fafc;*/
  --background: #EEF5FD;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --primary: #3b82f6;
  --primary-foreground: #f8fafc;
  --secondary: #f1f5f9;
  --secondary-foreground: #1e293b;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #e2e8f0;
  --accent-foreground: #1e293b;
  --destructive: #ef4444;
  --destructive-foreground: #f8fafc;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #3b82f6;
  --radius: 0.5rem;
  
  --bible-blue: #3b82f6;
  --bible-darkBlue: #1e40af;
  --bible-lightBlue: #bfdbfe;
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  font-family: 'SF Pro Display', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
 font-family: 'SF Pro Display', sans-serif;
  color: var(--bible-darkBlue);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

#main-content {
  flex-grow: 1;
}

.section {
  padding: 4rem 0;
}

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

.hidden {
  display: none !important;
}

/* Header */
.header {
  /*background-color: white;*/
  background: none;
 /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
  position: sticky;
  top: 0;
  z-index: 50;
}

.header.bg-white{
    background-color: rgba(255, 255, 255, 0.7); /* branco com transparência */
    backdrop-filter: blur(10px);               /* aplica o blur */
    -webkit-backdrop-filter: blur(10px);       /* suporte para Safari */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
   font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--bible-blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style-type: none;
  gap: 2rem;
}

.nav-list a {
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--bible-blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  height: 50px;
  width: 50px;
}

.menu-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #64748b;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #64748b;
  transition: transform 0.2s;
}

.menu-icon::before {
  transform: translateY(-8px);
}

.menu-icon::after {
  transform: translateY(8px);
}

.menu-icon.active {
  background-color: transparent;
}

.menu-icon.active::before {
  transform: translateY(0) rotate(45deg);
}

.menu-icon.active::after {
  transform: translateY(0) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  text-align: center;
  border: none;
  border-radius: 9999px;
}

.btn-primary {
  background-color: var(--bible-blue);
  color: white;
}

.btn-primary:hover {
  background-color: var(--bible-darkBlue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--bible-blue);
  border: 1px solid var(--bible-blue);
}

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

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.full-width {
  width: 100%;
}

/* Cards */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--muted-foreground);
}

.card-content {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Forms */
.form-container {
  max-width: 32rem;
  margin: 0 auto;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: white;
  font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.radio-option:hover {
  border-color: #cbd5e1;
}

.radio-option input[type="radio"] {
  margin-right: 0.75rem;
}

.radio-option input[type="radio"]:checked + label {
  font-weight: 500;
}

/* Confirmation Page */
.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: #ecfdf5;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-icon svg {
  color: #10b981;
}

.alert {
  background-color: #eff6ff;
  border: 1px solid var(--bible-blue);
  border-radius: var(--radius);
  padding: 1rem;
}

.alert-success {
  background-color: #ecfdf5;
  border-color: #10b981;
}

.alert-title {
  color: var(--bible-darkBlue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.alert-success .alert-title {
  color: #065f46;
}

.steps-list {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.steps-list li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--bible-darkBlue);
  color: white;
  padding: 3rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}



.heading-pill {
	/* margin-bottom: 1rem; */
	display: inline-flex;
	align-items: center;
	border-radius: 9999px;
	background-color: #DFEEFC;
	padding: .25rem .75rem;
	font-size: .775rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: var(--bible-blue);
	font-weight: 700;
        margin-bottom: 1.5rem;
}


/* Section Typography */
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--bible-darkBlue);
  text-align: center;
}

.section-description {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  /*background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);*/
  text-align: center;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  color: #000 !important;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-description {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
}

.hero-actions {
  margin-top: 2rem;
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--bible-blue);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--muted-foreground);
}

/* Benefits Section */
.gradient-bg {
  background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimony-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimony-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--bible-lightBlue);
  opacity: 0.5;
   font-family: 'SF Pro Display', sans-serif;
}

.testimony-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimony-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimony-name {
  font-weight: 600;
}

.cta-container {
  margin-top: 3rem;
  text-align: center;
}

/* Plans Page */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.plan-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.plan-header {
  padding: 1.5rem;
  background-color: var(--bible-blue);
  color: white;
  min-height: 200px;
}

.plan-title {
  color: white;
  margin-bottom: 0.5rem;
}

.plan-description {
  opacity: 0.9;
}

.plan-content {
  padding: 1.5rem;
}

.plan-features {
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bible-blue);
  font-weight: 600;
}

.plan-footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.plans-note {
  margin-top: 3rem;
  text-align: center;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* About Page */
.about-content {
  max-width: 48rem;
  margin: 0 auto;
}

.about-text {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form-container {
  flex: 1;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.25rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Contact Info Section */
.contact-info-section {
  background-color: var(--secondary);
}

.contact-info-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--bible-blue);
  border: 1px solid var(--bible-blue);
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1rem;
  transition: background-color 0.2s, color 0.2s;
}

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




.page-reader{}

.page-reader header{
   width: 80%;
   position: relative;
   margin: 0 auto;
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   margin-bottom: 10px;
   background-color: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(10px);
   color: var(--bible-blue);
}

.book-chapter {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}

.book-chapter .book{
    font-weight: 700;
    font-size: 1.1em;
    color: var(--bible-darkBlue);
}

.book-chapter .chapter{
    font-weight: 700;
    font-size: 1em;
}

.day-progress {
	/* border: 1px solid red; */
	align-items: center;
	display: flex;
	padding: 10px 15px;
	color: #333;
}


.section-reader {
	width: 80%;
	position: relative;
	margin: 0 auto;
	padding: 15px 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 2px 5px rgba(3,3,3,0.3);
	display: flex;
	flex-direction: column;
}

.section-reader .chapter {
	width: 100%;
	background-color: rgba(221, 221, 221, 0.1);
	padding: 10px 15px;
	margin-bottom: 15px;
	border-radius: 8px;
}
.section-reader .chapter .titule{
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}


.section-reader .chapter .versicle {
	width: 100%;
	/* border: 1px solid red; */
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin-bottom: 18px;
        align-items: center;
}

.section-reader .chapter .versicle .number {
	margin-right: 10px;
	/* font-style: italic; */
	color: #000;
	background-color: rgba(3,3,3,0.1);
	padding: 3px 8px;
        border-radius: 5px;
}


.versicles-inline .number {
	margin-right: 5px;
	/* font-style: italic; */
	color: #000;
	background-color: rgba(3,3,3,0.1);
	padding: 3px 8px;
        border-radius: 5px;
}



sup {
    font-size: 0.7em; /* Deixa o número menor */
    vertical-align: super; /* Sobe o número */
    color: var(--bible-blue);
}









/* ====== MENU LATERAL ====== */
.opcoes {
    position: fixed;
    top: 0;
    right: -300px; /* Inicia escondido */
    width: 300px;
    height: 100%;
    background-color: #f8f9fb;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
}

/* Quando o menu estiver aberto */
.opcoes.ativo {
    right: 0;
}

/* ====== CADA OPÇÃO ====== */
.opcao {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opcao .label {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

/* ====== BOTÕES ====== */
.botoes {
    display: flex;
    gap: 10px;
}

.botoes.em-coluna {
    flex-direction: column;
}

.botao {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
}

.botao:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.botao.selecionado {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* ====== SLIDER ====== */
.range-selector {
    width: 100%;
    display: flex;
    justify-content: center;
}

.range-selector input[type="range"] {
    width: 100%;
    cursor: pointer;
}

/* ====== BOTÃO PARA ABRIR O MENU ====== */
.botao-menu {
    position: fixed;
    bottom: 20px;
   right: 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    font-size: 22px;
    transition: background-color 0.2s;
    z-index: 10000;
}

.botao-menu:hover {
    background-color: #0056b3;
}

/* ====== SCROLL PERSONALIZADO ====== */
.opcoes::-webkit-scrollbar {
    width: 6px;
}

.opcoes::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
}

.opcoes::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.botao-conta {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: #fff;
    color: #007bff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    font-size: 22px;
    transition: background-color 0.2s;
    z-index: 10000;
}

.botao-conta:hover {
    background-color: #0056b3;
}


/*Prgresso*/
.meu-progresso {
    width: 80%;
     
    margin: 0 auto 15px auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.meu-progresso .progresso {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 80%;
}

.meu-progresso .progresso span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.meu-progresso .progress {
    height: 8px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.meu-progresso .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 6px;
    transition: width 0.3s ease-in-out;
}

.meu-progresso a.button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    background: #f0f8ff;
    border: 1px solid #2563eb;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.meu-progresso a.button:hover {
    background: #2563eb;
    color: #fff;
}

.meu-progresso a.button i {
    font-size: 14px;
}


/* Container da tabela */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1rem;
}

/* Tabela */
.table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

/* Cabeçalho */
.table thead th {
    background-color: #3B82F6;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 5px 8px;
    border: 1px solid #EEF5FD;
}

/* Linhas da tabela */
.table tbody tr {
    border-bottom: 1px solid #EEF5FD;
}

/* Alternância de cores para linhas */
.table tbody tr:nth-child(even) {
    background-color: #EEF5FD;
}

/* Células da tabela */
.table td {
    padding: 5px 8px;
    vertical-align: middle;
    border: 1px solid #EEF5FD;
}

/* Status estilos */
.visualizado {
    color: #16A34A; /* Verde */
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.nao-visualizado {
    color: #F59E0B; /* Amarelo/alarme */
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.nao-enviado {
    color: #3B82F6; /* Azul principal */
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

/* Ícones Font Awesome */
.table i {
    font-size: 1rem;
}

/* Botão acessar */
.table a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #3B82F6;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.table a:hover {
    background-color: #2563EB; /* Azul mais escuro no hover */
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}



/* Responsividade mobile */
@media (max-width: 768px) {
    .table thead {
        display: none; /* Esconde cabeçalho */
    }

    .table tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #EEF5FD;
        border-radius: 8px;
        padding: 10px;
    }

    .table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
        border: none;
        border-bottom: 1px solid #EEF5FD;
    }

    .table tbody td:last-child {
        justify-content: center;
        padding-top: 10px;
    }

    .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #3B82F6;
    }
}

 


/* Media Queries */
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .steps-container,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-container,
  .contact-info-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  
 
  
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .main-nav.active .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .main-nav.active .btn {
    margin-top: 1rem;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
   
  .page-reader header{
    width: 100%;
  }
  
  .section-reader {
	width: 95%;
        padding: 10px 10px;
  }
  
  .section-reader .chapter {
	width: 100%;
	background-color: rgba(221, 221, 221, 0.1);
	padding: 8px 8px;
	margin-bottom: 15px;
	border-radius: 8px;
}
  
  .section-reader .chapter .versicle {
	 
	align-items: stretch;
   }
   
   .section-reader .chapter .versicle .number{
       display: flex;
       justify-content: center;
       align-items: center;
       
   }
   
   .meu-progresso {
        width: 95%;
   }
  
   .botao-conta {
        bottom: 20px;
	right: 89px;
    }
   
  
  
}
