* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    overflow: hidden;
}

.presentation {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide {
    display: none;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 40px 60px;
    animation: slideIn 0.5s ease;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.slide.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-text {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #2c5282;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo-text.distrito {
    color: #2c5282;
    font-size: 3em;
}

.logo-text.campamento {
    color: #4CAF50;
    font-size: 2em;
}

.slide h1 {
    text-align: center;
    color: #2c5282;
    font-size: 2.8em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slide h2 {
    color: #2c5282;
    font-size: 2em;
    margin: 20px 0;
    text-align: center;
    word-wrap: break-word;
}

.scripture {
    background: linear-gradient(135deg, #E8F4F8 0%, #B8E0F0 100%);
    border-left: 6px solid #FFD700;
    padding: 30px;
    margin: 25px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 1100px;
    width: 100%;
}

.scripture .reference {
    font-weight: bold;
    color: #2c5282;
    font-size: 1.4em;
    margin-bottom: 15px;
    display: block;
}

.scripture .text {
    font-style: italic;
    color: #1a365d;
    font-size: 1.25em;
    line-height: 1.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.activity {
    background: linear-gradient(135deg, #F0FFF0 0%, #C8E6C9 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 25px auto;
    border-left: 6px solid #4CAF50;
    max-width: 1100px;
    width: 100%;
}

.activity-title {
    font-size: 1.6em;
    color: #2E7D32;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    font-size: 1.25em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 1000;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a365d;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    min-width: 160px;
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #4CAF50 100%);
    transition: width 0.3s;
}

.slide-number {
    position: absolute;
    top: 25px;
    right: 40px;
    background: #2c5282;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
}

.intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.intro-content h1 {
    font-size: 3.2em;
    margin: 30px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.intro-content p {
    font-size: 1.6em;
    color: #4682B4;
    margin: 20px 0;
}

.highlight {
    background: linear-gradient(120deg, #FFD700 0%, #FFA500 100%);
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}

.big-number {
    font-size: 5em;
    color: #FFD700;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.example-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.3em;
    margin: 15px auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    word-wrap: break-word;
}

.tip-box {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
    border-left: 6px solid #FFA500;
    padding: 25px;
    border-radius: 12px;
    margin: 25px auto;
    font-size: 1.3em;
    max-width: 1100px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tip-box::before {
    content: "💡 ";
    font-size: 1.5em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
}

.benefit-card {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.benefit-card .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.scripture-grid {
    display: grid;
    gap: 20px;
    margin: 25px auto;
    max-width: 1100px;
    width: 100%;
}

.commitment-box {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE5B4 100%);
    padding: 35px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
}

.commitment-box h3 {
    color: #C05621;
    margin-bottom: 25px;
    font-size: 1.8em;
    text-align: center;
    word-wrap: break-word;
}

.commitment-box ul {
    list-style: none;
    padding: 0;
}

.commitment-box li {
    padding: 15px;
    margin: 10px 0;
    background: white;
    border-radius: 10px;
    font-size: 1.3em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
}

.campamento-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #2E7D32;
    margin: 20px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.examples-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Scroll personalizado */
.slide::-webkit-scrollbar {
    width: 8px;
}

.slide::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.slide::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.slide::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Media queries mejoradas */
@media (max-width: 1200px) {
    .slide {
        height: 85vh;
    }
    
    .slide h1 {
        font-size: 2.5em;
    }
    
    .logo-text.distrito {
        font-size: 2.5em;
    }
    
    .logo-text.campamento {
        font-size: 1.8em;
    }
}

@media (max-width: 1024px) {
    .slide {
        padding: 30px 40px;
        height: 85vh;
    }
    
    .slide h1 {
        font-size: 2.2em;
    }
    
    .logo-text.distrito {
        font-size: 2.2em;
    }
    
    .logo-text.campamento {
        font-size: 1.6em;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .scripture-grid {
        grid-template-columns: 1fr;
    }
    
    .big-number {
        font-size: 4em;
    }
    
    .intro-content h1 {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 25px 30px;
        height: 85vh;
        border-radius: 15px;
    }
    
    .slide h1 {
        font-size: 1.8em;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .slide h2 {
        font-size: 1.6em;
    }
    
    .intro-content h1 {
        font-size: 2.2em;
        line-height: 1.3;
    }
    
    .logo-text.distrito {
        font-size: 1.8em;
    }
    
    .logo-text.campamento {
        font-size: 1.4em;
    }
    
    .nav-btn {
        padding: 15px 35px;
        font-size: 1em;
        min-width: 140px;
    }
    
    .logo-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .scripture .text {
        font-size: 1.1em;
        line-height: 1.6;
    }
    
    .activity-title {
        font-size: 1.4em;
    }
    
    .step {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    
    .big-number {
        font-size: 3.5em;
        margin: 20px 0;
    }
    
    .tip-box {
        font-size: 1.1em;
        padding: 20px;
    }
    
    .campamento-title {
        font-size: 2em;
    }
    
    .commitment-box li {
        font-size: 1.1em;
        padding: 12px;
    }
    
    .slide-number {
        top: 15px;
        right: 20px;
        padding: 8px 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 20px 15px;
        height: 90vh;
        width: 98%;
        border-radius: 12px;
    }
    
    .slide h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .slide h2 {
        font-size: 1.3em;
    }
    
    .intro-content h1 {
        font-size: 1.8em;
    }
    
    .logo-text.distrito {
        font-size: 1.5em;
    }
    
    .logo-text.campamento {
        font-size: 1.2em;
    }
    
    .nav-btn {
        padding: 12px 25px;
        font-size: 0.9em;
        min-width: 120px;
    }
    
    .navigation {
        bottom: 15px;
        gap: 10px;
    }
    
    .scripture {
        padding: 20px;
    }
    
    .scripture .reference {
        font-size: 1.2em;
    }
    
    .scripture .text {
        font-size: 1em;
    }
    
    .activity {
        padding: 20px;
    }
    
    .step {
        font-size: 1em;
    }
    
    .big-number {
        font-size: 3em;
    }
    
    .example-box {
        font-size: 1em;
        padding: 15px;
    }
    
    .examples-container {
        gap: 10px;
    }
    
    .tip-box {
        font-size: 1em;
        padding: 15px;
    }
    
    .benefit-card {
        padding: 15px;
        font-size: 1em;
    }
    
    .benefit-card .icon {
        font-size: 2em;
    }
    
    .campamento-title {
        font-size: 1.6em;
    }
    
    .commitment-box {
        padding: 20px;
    }
    
    .commitment-box h3 {
        font-size: 1.4em;
    }
    
    .commitment-box li {
        font-size: 1em;
    }
    
    .slide-number {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.9em;
    }
    
    .progress {
        height: 4px;
    }
}

@media (max-width: 360px) {
    .slide h1 {
        font-size: 1.3em;
    }
    
    .intro-content h1 {
        font-size: 1.5em;
    }
    
    .nav-btn {
        padding: 10px 20px;
        min-width: 100px;
    }
    
    .logo-text.distrito {
        font-size: 1.3em;
    }
    
    .logo-text.campamento {
        font-size: 1em;
    }
}