/* Reset y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
}

/* Logo institucional */
.logo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.institutional-logo {
    height: 60px;
    width: auto;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.institutional-logo:hover {
    transform: scale(1.05);
}

/* Navegación */
.slide-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-btn {
    background: #667eea;
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #5a67d8;
    transform: scale(1.05);
}

.nav-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.slide-counter {
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
}

/* Indicadores de slides */
.slide-indicators {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #667eea;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Contenedor de slides */
.slides-container {
    display: flex;
    width: 900vw;
    height: 100vh;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-content {
    max-width: 1200px;
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-y: auto;
    padding: 20px;
}

/* Slide 1 - Título */
.slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.slide-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.slide-content {
    position: relative;
    z-index: 2;
}

.title-section {
    margin-bottom: 40px;
    position: relative;
}

.title-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; width: 100px; }
    50% { opacity: 1; width: 200px; }
}

.main-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        3px 3px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #ffd700, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes titleGlow {
    0%, 100% { 
        background-position: 0% 50%;
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.3),
            3px 3px 6px rgba(0, 0, 0, 0.5);
    }
    50% { 
        background-position: 100% 50%;
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.4),
            3px 3px 6px rgba(0, 0, 0, 0.5);
    }
}

.subtitle {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    animation: subtitleFloat 4s ease-in-out infinite;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.description {
    font-size: 1.3rem;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.2),
        1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: descriptionFade 5s ease-in-out infinite;
}

@keyframes descriptionFade {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; }
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.girl-coding {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    font-size: 3.5rem;
    opacity: 0.9;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.girl-coding i {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.girl-coding i:hover {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.girl-coding i:nth-child(2) {
    animation-delay: 0.5s;
}

.girl-coding i:nth-child(3) {
    animation-delay: 1s;
}

.girl-coding i:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-15px) rotate(2deg);
    }
    75% { 
        transform: translateY(-25px) rotate(-2deg);
    }
}

/* Partículas flotantes */
.slide-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Slides 2-9 - Contenido */
.slide:not(.slide-1) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.slide:nth-child(even):not(.slide-1) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide:nth-child(3n):not(.slide-1) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

.content-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.time-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slide 2 - Bienvenida */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.point i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    flex-shrink: 0;
}

.point h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.point p {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.illustration-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    margin-top: 20px;
}

.illustration-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.illustration-box p {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Slide 3 - Bolt.IA */
.demo-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.feature p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.browser-mockup {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.browser-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.url-bar {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.browser-content {
    padding: 40px 30px;
    text-align: center;
}

.browser-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.browser-content p {
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Slide 4 - Lluvia de ideas */
.brainstorm-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
}

.idea-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.idea-card:hover {
    transform: translateY(-5px);
}

.idea-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.idea-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.idea-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.action-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.action-prompt i {
    font-size: 1.8rem;
    color: #ffd700;
}

.action-prompt p {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Slide 5 - Buen prompt */
.prompt-definition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    text-align: center;
}

.prompt-definition i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.prompt-definition h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.prompt-definition p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
}

.bad-example, .good-example {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.example-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.example-header.bad {
    background: rgba(239, 68, 68, 0.4);
}

.example-header.good {
    background: rgba(34, 197, 94, 0.4);
}

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

.example-content {
    padding: 25px;
    text-align: left;
}

.example-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

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

.example-content li {
    padding: 5px 0;
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.example-content li:before {
    content: "• ";
    color: rgba(255, 255, 255, 0.7);
    margin-right: 8px;
}

/* Slide 6 - Prompt con IA */
.prompt-formula h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.formula-components {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.component {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 140px;
    max-width: 180px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.component-icon {
    margin-bottom: 15px;
}

.component-icon i {
    font-size: 2rem;
    opacity: 0.9;
}

.component h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.component p {
    font-size: 0.85rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.plus {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.7;
}

.chatgpt-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    text-align: center;
}

.chatgpt-tip i {
    font-size: 2rem;
    color: #00d4aa;
}

.chatgpt-tip p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Slide 7 - Construcción MVP */
.construction-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.step-number {
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.step-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.step-content i {
    font-size: 1.8rem;
    float: right;
    opacity: 0.7;
    margin-top: -10px;
}

.hands-on {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hands-on i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hands-on h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hands-on p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Slide 8 - Presentaciones */
.presentation-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.presentation-rules h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.rule {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.rule i {
    font-size: 1.8rem;
    opacity: 0.9;
    width: 40px;
    flex-shrink: 0;
}

.rule p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.presentation-visual {
    text-align: center;
    margin-top: 20px;
}

.stage {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.stage i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stage p {
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.audience {
    background: rgba(0, 0, 0, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.audience i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.audience p {
    font-size: 1.1rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Slide 9 - Cierre */
.closing-section {
    text-align: center;
    max-width: 900px;
}

.closing-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.achievement {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.achievement i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.achievement h3 {
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.inspiration h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.next-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.step-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.step-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.resources {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.resources h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.3rem;
}

.final-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    text-align: center;
}

.final-message i {
    font-size: 1.8rem;
    color: #ffd700;
}

.final-message p {
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Microsoft Forms Container */
.microsoft-forms-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.forms-instructions {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.instruction-item i {
    font-size: 1.2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.instruction-item p {
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.microsoft-form-iframe {
    width: 100% !important;
    height: 600px !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    border-radius: 15px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.form-fallback {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-fallback p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.fallback-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fallback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
}

.fallback-btn i {
    font-size: 1.1rem;
}

/* Formulario de envío de URLs (mantenido como fallback) */
.url-submission-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.url-submission-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: #ffd700;
}

.url-submission-section > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.form-group label i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
}

.submit-btn i {
    font-size: 1.2rem;
}

.alternative-sharing {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.alternative-sharing p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.sharing-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.sharing-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.sharing-option:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sharing-option i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
    }
    
    .content-header h2 {
        font-size: 2.2rem;
    }
    
    .content-grid,
    .demo-section,
    .presentation-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ideas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .formula-components {
        flex-direction: column;
        gap: 15px;
    }
    
    .plus {
        transform: rotate(90deg);
    }
    
    .next-steps {
        gap: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .comparison-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 15px;
    }
    
    .slide-content {
        height: calc(100vh - 100px);
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .content-header h2 {
        font-size: 1.8rem;
    }
    
    .content-header {
        margin-bottom: 20px;
    }
    
    .girl-coding {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        font-size: 2.5rem;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .point i {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .point h3 {
        font-size: 1.3rem;
    }
    
    .point p {
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature i {
        font-size: 1.8rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
    
    .ideas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .idea-card {
        padding: 20px;
    }
    
    .formula-components {
        gap: 10px;
    }
    
    .component {
        min-width: 120px;
        padding: 15px;
    }
    
    .component h4 {
        font-size: 1rem;
    }
    
    .component p {
        font-size: 0.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content i {
        float: none;
        margin-top: 10px;
    }
    
    .rule {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .rule i {
        width: auto;
        margin-bottom: 10px;
    }
    
    .next-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .url-submission-section {
        padding: 25px;
        margin-top: 20px;
    }
    
    .url-submission-section h3 {
        font-size: 1.6rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .sharing-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .sharing-option {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .microsoft-forms-container {
        padding: 20px;
        max-width: 100%;
    }
    
    .microsoft-form-iframe {
        height: 500px;
    }
    
    .forms-instructions {
        gap: 10px;
    }
    
    .instruction-item {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .fallback-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slide-nav {
        bottom: 10px;
        padding: 8px 15px;
    }
    
    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .slide-indicators {
        right: 15px;
    }
    
    .logo-container {
        top: 15px;
        right: 15px;
    }
}