/* ===== SECCIÓN DE FOTOS ===== */
.photos-section {
    background: var(--color-white);
    padding: var(--space-xl) 0;
    position: relative;
}

.photos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.photos-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

/* ===== CONTENIDO DE FOTOS ===== */
.photos-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(248, 215, 218, 0.3);
}

.photos-text {
    margin-bottom: var(--space-lg);
}

.photos-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.photos-text p:first-child {
    font-weight: 500;
    color: var(--color-text-dark);
}

.photos-text p:last-child {
    color: var(--color-text-light);
    font-style: italic;
}

/* ===== BOTÓN DE DRIVE ===== */
.photos-button {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 12px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.photos-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.photos-button:hover::before {
    left: 100%;
}

.photos-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.photos-button:active {
    transform: translateY(-1px);
}

.photos-button .fab {
    color: var(--color-white);
    font-size: 1.3rem;
}

.photos-button .fa-external-link-alt {
    color: var(--color-white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== DECORACIÓN ADICIONAL ===== */
.photos-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.photo-icon {
    color: var(--color-accent);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: photoFloat 3s ease-in-out infinite;
}

.photo-icon:nth-child(1) { animation-delay: 0s; }
.photo-icon:nth-child(2) { animation-delay: 0.5s; }
.photo-icon:nth-child(3) { animation-delay: 1s; }

@keyframes photoFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* ===== INSTRUCCIONES ADICIONALES ===== */
.photos-instructions {
    background: rgba(212, 175, 55, 0.1);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    margin-top: var(--space-lg);
    border-left: 4px solid var(--color-accent);
}

.photos-instructions h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.photos-instructions p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.6;
}

.photos-instructions .fas {
    color: var(--color-accent);
    margin-right: var(--space-xs);
}

/* ===== LISTA DE CONSEJOS ===== */
.photos-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.tip-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.tip-item .fas {
    color: var(--color-accent);
    font-size: 0.8rem;
    width: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .photos-section {
        padding: var(--space-lg) 0;
    }
    
    .photos-content {
        padding: var(--space-lg);
        margin: 0 var(--space-sm);
    }
    
    .photos-text p {
        font-size: 1rem;
    }
    
    .photos-button {
        font-size: 1.1rem;
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-xs);
    }
    
    .photos-button .fab {
        font-size: 1.2rem;
    }
    
    .photos-decoration {
        gap: var(--space-sm);
    }
    
    .photo-icon {
        font-size: 1.3rem;
    }
    
    .photos-instructions {
        padding: var(--space-sm);
    }
    
    .photos-instructions h4 {
        font-size: 1rem;
    }
    
    .photos-instructions p {
        font-size: 0.9rem;
    }
    
    .photos-tips {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .photos-content {
        padding: var(--space-md);
    }
    
    .photos-button {
        font-size: 1rem;
        flex-direction: column;
        gap: var(--space-xs);
        padding: var(--space-md);
    }
    
    .photos-button .fab {
        font-size: 1.5rem;
    }
    
    .photos-decoration {
        margin: var(--space-md) 0;
    }
    
    .photo-icon {
        font-size: 1.2rem;
    }
    
    .photos-instructions {
        padding: var(--space-sm);
        margin-top: var(--space-md);
    }
    
    .tip-item {
        font-size: 0.85rem;
    }
}

/* ===== ANIMACIÓN DE ENTRADA ===== */
.photos-content {
    animation: slideInFromBottom 0.8s ease;
}

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

/* ===== EFECTO AL HACER SCROLL ===== */
.photos-section.in-view .photos-content {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}