/* Componentes específicos para páginas individuales */

/* Hero de página específica */
.hero-page {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

/* Encabezados de página */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.page-description {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Historia */
.history-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.history-image i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.history-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Misión y Visión */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.mission-card .card-icon, .vision-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.belief-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.belief-item:hover {
    transform: translateY(-5px);
}

.belief-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.leader-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.leader-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Iglesias Hijas */
.daughter-churches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.church-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.church-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonios completos */
.testimonials-full {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-full {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

/* Calendario semanal */
.weekly-schedule {
    max-width: 800px;
    margin: 0 auto;
}

.day-schedule {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.day-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-header i {
    font-size: 1.5rem;
}

.day-events {
    padding: 2rem;
}

.event-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-time {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    height: fit-content;
}

.event-details h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.event-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.ministry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.ministry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ministry-time, .ministry-leader {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Eventos especiales */
.special-events {
    max-width: 800px;
    margin: 0 auto;
}

.event-highlight {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 2rem;
}

.event-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-info {
    flex: 1;
}

.event-desc {
    margin: 1rem 0;
    color: var(--gray);
}

.event-details p {
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* DNI - Introducción */
.dni-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.dni-intro-image i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.dni-highlight {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
}

.dni-highlight i {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--primary-color);
}

.dni-highlight cite {
    display: block;
    text-align: right;
    color: var(--gray);
    font-style: normal;
    margin-top: 0.5rem;
}

/* Detalles del programa */
.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Plan de estudios */
.curriculum {
    max-width: 800px;
    margin: 0 auto;
}

.semester {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.semester h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-list {
    list-style: none;
}

.course-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list i {
    color: var(--primary-color);
}

/* Requisitos */
.requirements {
    max-width: 800px;
    margin: 0 auto;
}

.requirement-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 2rem;
}

.requirement-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.requirement-content ul {
    list-style: none;
}

.requirement-content li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-content li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

/* Proceso de inscripción */
.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.enrollment-cta {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.enrollment-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Testimonios de egresados */
.alumni-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.alumni-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.alumni-quote {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    position: relative;
}

.alumni-quote i {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--primary-color);
}

.alumni-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alumni-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* Recursos - Podcasts */
.podcasts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.podcast-player {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.player-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-header i {
    font-size: 2rem;
}

.player-content {
    padding: 2rem;
}

.preacher, .date {
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description {
    margin: 1.5rem 0;
    line-height: 1.8;
}

.player-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.play-btn, .download-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

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

.download-btn {
    background: var(--light-color);
    color: var(--dark-color);
}

.play-btn:hover, .download-btn:hover {
    transform: translateY(-2px);
}

.podcast-list {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.episode {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.episode:last-child {
    border-bottom: none;
}

.play-episode {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-episode:hover {
    background: var(--primary-dark);
}

/* Biblioteca */
.library-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-btn:hover:not(.active) {
    background: var(--gray-light);
}

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

.book-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.book-cover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.book-info {
    padding: 1.5rem;
}

.book-info h4 {
    margin-bottom: 0.5rem;
}

.author {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Devocionales */
.devotionals {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.devotional-of-day {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.devotional-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.devotional-content {
    padding: 2rem;
}

.bible-verse {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.verse {
    font-size: 1.2rem;
    font-style: italic;
    margin: 1rem 0;
    line-height: 1.8;
}

.reference {
    text-align: right;
    color: var(--gray);
    font-weight: 600;
}

.archive-list {
    margin-top: 1.5rem;
}

.archive-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.archive-item:last-child {
    border-bottom: none;
}

.read-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    height: 170px;
    background: var(--gray-light);
}

.video-thumbnail i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    padding: 1.5rem;
}

.video-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

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

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.tool-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tool-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Suscripción */
.subscribe-form {
    margin-top: 2rem;
}

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

.form-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
}

.form-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Dar - Introducción */
.giving-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.giving-intro-image i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.verse-highlight {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
}

.verse-highlight i {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--primary-color);
}

.giving-list {
    list-style: none;
    margin-top: 1.5rem;
}

.giving-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.giving-list i {
    color: var(--accent-color);
}

/* Tabs de métodos */
.method-tabs {
    display: flex;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    background: var(--light-color);
    color: var(--primary-color);
}

.tab-content {
    display: none;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.method-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.qr-container {
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 320px;
}

.qr-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #742a87, #00cba0);
}

.qr-container i {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.bank-details, .cash-instructions, .check-instructions {
    margin-top: 1.5rem;
}

.bank-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.bank-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

/* Estilos para El Viaje del Discípulo (DNI) */
.journey-intro {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-step {
    position: relative;
}

.step-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: none; /* Oculto por defecto, se puede activar si se prefiere sobre el número */
}

.step-verse {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
}

.step-verse cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
}

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

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.step-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.info-box ul {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.info-box li {
    margin-bottom: 0.25rem;
    position: relative;
}

.info-box li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.verse-small {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 2px solid var(--gray-light);
}

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

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

.instruction {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.bank-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--light-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.instruction i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Declaración de ofrendas */
.declaration-steps {
    margin: 2rem 0;
}

.declaration-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

/* Transparencia */
.distribution-chart {
    margin: 2rem 0;
}

.chart-item {
    margin-bottom: 1rem;
}

.chart-bar {
    height: 30px;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    transition: width 1s ease;
}

.chart-label span {
    font-weight: 600;
    color: var(--dark-color);
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contacto - Grid de información */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Formulario de contacto */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.map-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.directions {
    margin-top: 2rem;
}

.transport-options {
    margin-top: 1.5rem;
}

.transport {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.transport i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Contactos por ministerio */
.ministry-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ministry-contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.ministry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

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

/* CTA boxes */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-box h2 {
    color: var(--white);
}

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

.cta-image i {
    font-size: 6rem;
    opacity: 0.8;
}

/* Utilidades */
.text-center {
    text-align: center;
}

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

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

/* Responsive específico */
@media (max-width: 992px) {
    .history-container,
    .dni-intro,
    .giving-intro,
    .method-details,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .podcasts,
    .devotionals {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .event-highlight {
        flex-direction: column;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .requirement-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .method-tabs,
    .library-filters {
        flex-direction: column;
    }
    
    .tab-btn,
    .filter-btn {
        width: 100%;
    }
    
    .enrollment-buttons,
    .player-controls {
        flex-direction: column;
    }
}

.hero-with-bg {
    --x-0: 93%;
    --c-0: hsla(217, 100%, 30%, 1);
    --y-0: 63%;
    --x-1: 33%;
    --y-1: -7%;
    --c-1: hsla(0, 0%, 0%, 1);
    --x-2: 84%;
    --y-2: 7%;
    --c-2: hsla(0, 0%, 0%, 1);
    --y-3: 5%;
    --c-3: hsla(0, 0%, 0%, 1);
    --x-3: 14%;
    --c-4: hsla(0, 0%, 0%, 1);
    --x-4: 7%;
    --y-4: 96%;
    --c-5: hsla(0, 0%, 0%, 1);
    --x-5: 93%;
    --y-5: 90%;
    --y-6: 61%;
    --c-6: hsla(279, 67%, 27%, 1);
    --x-6: 3%;
    --x-7: 94%;
    --y-7: 59%;
    --c-7: hsla(279, 67%, 27%, 1);
    --y-8: 63%;
    --x-8: 48%;
    --c-8: hsla(217, 100%, 39%, 1);
    --c-9: hsla(217, 100%, 30%, 1);
    --y-9: 78%;
    --x-9: 96%;
    background-color: hsla(262, 82%, 3%, 1);
    background-image: radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)), radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)), radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)), radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3)), radial-gradient(circle at var(--x-4) var(--y-4), var(--c-4) var(--s-start-4), transparent var(--s-end-4)), radial-gradient(circle at var(--x-5) var(--y-5), var(--c-5) var(--s-start-5), transparent var(--s-end-5)), radial-gradient(circle at var(--x-6) var(--y-6), var(--c-6) var(--s-start-6), transparent var(--s-end-6)), radial-gradient(circle at var(--x-7) var(--y-7), var(--c-7) var(--s-start-7), transparent var(--s-end-7)), radial-gradient(circle at var(--x-8) var(--y-8), var(--c-8) var(--s-start-8), transparent var(--s-end-8)), radial-gradient(circle at var(--x-9) var(--y-9), var(--c-9) var(--s-start-9), transparent var(--s-end-9));
    animation: ani-hero-bg 15s linear infinite alternate-reverse;
    background-blend-mode: normal, normal, normal, normal, normal, normal, normal, normal, normal, normal;
    will-change: transform, opacity;
    contain: paint;
    position: relative;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.6) 0%, rgba(46, 139, 87, 0.9) 100%);
    z-index: 1;
}

.hero-with-bg .hero-content {
    position: relative;
    z-index: 2;
}
.dimens{
    border: 5px solid #799679;

}

/* Ajustar colores del texto para mejor contraste */
.hero-with-bg .hero-title,
.hero-with-bg .hero-subtitle {
    color: white;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    max-width: 300px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Ajustar icono en el placeholder */
.hero-with-bg .image-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}



.hero-with-bg .image-placeholder i {
    color: white;
    opacity: 0.9;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse-whatsapp 2s infinite;
    border: 2px solid #adacac;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Versión con texto (más grande) */
.whatsapp-btn-large {
    width: auto;
    height: auto;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn-large i {
    font-size: 24px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
}

/* Para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 150px;
        height: 60px;
    }
    
    .whatsapp-btn i {
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Ocultar tooltip en móviles */
    }
    
    .whatsapp-btn-large {
        padding: 10px 16px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }
}

/* Para tablets */
@media (max-width: 1024px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
}

@keyframes ani-hero-bg {
    0% {
        --s-start-0: 8.392121895570533%;
        --s-end-0: 38.584065253664996%;
        --x-0: 93%;
        --c-0: hsla(217, 100%, 30%, 1);
        --y-0: 63%;
        --x-1: 33%;
        --y-1: -7%;
        --c-1: hsla(0, 0%, 0%, 1);
        --s-start-1: 8.392121895570533%;
        --s-end-1: 22.10878124098502%;
        --s-start-2: 8.392121895570533%;
        --s-end-2: 22.558651527792346%;
        --x-2: 84%;
        --y-2: 7%;
        --c-2: hsla(0, 0%, 0%, 1);
        --y-3: 5%;
        --c-3: hsla(0, 0%, 0%, 1);
        --x-3: 14%;
        --s-start-3: 8.392121895570533%;
        --s-end-3: 22.558651527792346%;
        --c-4: hsla(0, 0%, 0%, 1);
        --s-start-4: 8.392121895570533%;
        --s-end-4: 22.558651527792346%;
        --x-4: 7%;
        --y-4: 96%;
        --c-5: hsla(0, 0%, 0%, 1);
        --x-5: 93%;
        --s-start-5: 8.392121895570533%;
        --s-end-5: 22.558651527792346%;
        --y-5: 90%;
        --y-6: 61%;
        --c-6: hsla(279, 67%, 27%, 1);
        --s-start-6: 8.392121895570533%;
        --s-end-6: 39.67138181429644%;
        --x-6: 3%;
        --x-7: 94%;
        --y-7: 59%;
        --s-start-7: 8.392121895570533%;
        --s-end-7: 49.58090142552271%;
        --c-7: hsla(279, 67%, 27%, 1);
        --y-8: 63%;
        --x-8: 48%;
        --c-8: hsla(217, 100%, 39%, 1);
        --s-start-8: 8.392121895570533%;
        --s-end-8: 34.815367581495366%;
        --c-9: hsla(217, 100%, 30%, 1);
        --y-9: 78%;
        --x-9: 96%;
        --s-start-9: 8.392121895570533%;
        --s-end-9: 31.77166380372925%;
    }

    50% {
        --s-start-0: 12.892043731642234%;
        --s-end-0: 42.94837818044209%;
        --x-0: 2%;
        --c-0: hsla(217, 100%, 30%, 1);
        --y-0: 59%;
        --x-1: 42%;
        --y-1: 10%;
        --c-1: hsla(0, 0%, 0%, 1);
        --s-start-1: 8.392121895570533%;
        --s-end-1: 41.69445156991687%;
        --s-start-2: 8.392121895570533%;
        --s-end-2: 20.488815899465003%;
        --x-2: 75%;
        --y-2: 29%;
        --c-2: hsla(0, 0%, 0%, 1);
        --y-3: 16%;
        --c-3: hsla(0, 0%, 0%, 1);
        --x-3: 5%;
        --s-start-3: 8.392121895570533%;
        --s-end-3: 30.099844327777923%;
        --c-4: hsla(0, 0%, 0%, 1);
        --s-start-4: 8.392121895570533%;
        --s-end-4: 24.59566937006635%;
        --x-4: 36%;
        --y-4: 91%;
        --c-5: hsla(0, 0%, 0%, 1);
        --x-5: 70%;
        --s-start-5: 8.392121895570533%;
        --s-end-5: 24.59566937006635%;
        --y-5: 91%;
        --y-6: 73%;
        --c-6: hsla(279, 67%, 27%, 1);
        --s-start-6: 9%;
        --s-end-6: 26.825849058644888%;
        --x-6: 54%;
        --x-7: 57%;
        --y-7: 76%;
        --s-start-7: 9%;
        --s-end-7: 49.05074977970796%;
        --c-7: hsla(279, 67%, 27%, 1);
        --y-8: 53%;
        --x-8: 11%;
        --c-8: hsla(217, 100%, 39%, 1);
        --s-start-8: 9;
        --s-end-8: 26.166345747226664%;
        --c-9: hsla(217, 100%, 30%, 1);
        --y-9: 70%;
        --x-9: 70%;
        --s-start-9: 9;
        --s-end-9: 22.152460022684956%;
    }

    100% {
        --x-1: 76%;
        --y-1: -3%;
        --c-1: hsla(0, 0%, 0%, 1);
        --s-start-1: 8.392121895570533%;
        --s-end-1: 59.32232816638693%;
        --s-start-2: 8.392121895570533%;
        --s-end-2: 28.52989037790774%;
        --x-2: 97%;
        --y-2: 18%;
        --c-2: hsla(0, 0%, 0%, 1);
        --y-3: 18%;
        --c-3: hsla(0, 0%, 0%, 1);
        --x-3: 42%;
        --s-start-3: 8.392121895570533%;
        --s-end-3: 28.52989037790774%;
        --c-4: hsla(0, 0%, 0%, 1);
        --s-start-4: 8.392121895570533%;
        --s-end-4: 28.52989037790774%;
        --x-4: 66%;
        --y-4: 95%;
        --c-5: hsla(0, 0%, 0%, 1);
        --x-5: 46%;
        --s-start-5: 8.392121895570533%;
        --s-end-5: 28.52989037790774%;
        --y-5: 92%;
        --y-6: 16%;
        --c-6: hsla(279, 67%, 27%, 1);
        --s-start-6: 24.72064437400016%;
        --s-end-6: 47.490620328604024%;
        --x-6: 102%;
        --x-7: 22%;
        --y-7: 52%;
        --s-start-7: 10.200720718860145%;
        --s-end-7: 50.46456494288142%;
        --c-7: hsla(279, 67%, 27%, 1);
        --c-9: hsla(217, 100%, 31%, 1);
        --y-9: 51%;
        --x-9: 97%;
        --s-start-9: 6.294132688184733%;
        --s-end-9: 20.79106730744014%;
    }
}

@property --s-start-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 38.584065253664996%
}

@property --x-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 93%
}

@property --c-0 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(217, 100%, 30%, 1)
}

@property --y-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 63%
}

@property --x-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 33%
}

@property --y-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: -7%
}

@property --c-1 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(0, 0%, 0%, 1)
}

@property --s-start-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 22.10878124098502%
}

@property --s-start-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 22.558651527792346%
}

@property --x-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 84%
}

@property --y-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 7%
}

@property --c-2 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(0, 0%, 0%, 1)
}

@property --y-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 5%
}

@property --c-3 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(0, 0%, 0%, 1)
}

@property --x-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 14%
}

@property --s-start-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 22.558651527792346%
}

@property --c-4 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(0, 0%, 0%, 1)
}

@property --s-start-4 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-4 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 22.558651527792346%
}

@property --x-4 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 7%
}

@property --y-4 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 96%
}

@property --c-5 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(0, 0%, 0%, 1)
}

@property --x-5 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 93%
}

@property --s-start-5 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-5 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 22.558651527792346%
}

@property --y-5 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 90%
}

@property --y-6 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 61%
}

@property --c-6 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(279, 67%, 27%, 1)
}

@property --s-start-6 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-6 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 39.67138181429644%
}

@property --x-6 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 3%
}

@property --x-7 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 94%
}

@property --y-7 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 59%
}

@property --s-start-7 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-7 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 49.58090142552271%
}

@property --c-7 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(279, 67%, 27%, 1)
}

@property --y-8 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 63%
}

@property --x-8 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 48%
}

@property --c-8 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(217, 100%, 39%, 1)
}

@property --s-start-8 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-8 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 34.815367581495366%
}

@property --c-9 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(217, 100%, 30%, 1)
}

@property --y-9 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 78%
}

@property --x-9 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 96%
}

@property --s-start-9 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 8.392121895570533%
}

@property --s-end-9 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 31.77166380372925%
}